Enum Class ClusteringDependentLogic.Commit
java.lang.Object
java.lang.Enum<ClusteringDependentLogic.Commit>
org.infinispan.interceptors.locking.ClusteringDependentLogic.Commit
- All Implemented Interfaces:
Serializable,Comparable<ClusteringDependentLogic.Commit>,Constable
- Enclosing interface:
ClusteringDependentLogic
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionCommit the entry, this is the owner.Commit the entry but this node is not an owner, therefore, listeners should not be fired.Do not commit the entry. -
Method Summary
Modifier and TypeMethodDescriptionbooleanisCommit()booleanisLocal()Returns the enum constant of this class with the specified name.static ClusteringDependentLogic.Commit[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
NO_COMMIT
Do not commit the entry. -
COMMIT_NON_LOCAL
Commit the entry but this node is not an owner, therefore, listeners should not be fired. -
COMMIT_LOCAL
Commit the entry, this is the owner.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum class has no constant with the specified nameNullPointerException- if the argument is null
-
isCommit
public boolean isCommit() -
isLocal
public boolean isLocal()
-