Enum ClusteringDependentLogic.Commit
java.lang.Object
java.lang.Enum<ClusteringDependentLogic.Commit>
org.infinispan.interceptors.locking.ClusteringDependentLogic.Commit
- All Implemented Interfaces:
Serializable,Comparable<ClusteringDependentLogic.Commit>
- Enclosing interface:
- ClusteringDependentLogic
-
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 type with the specified name.static ClusteringDependentLogic.Commit[]values()Returns an array containing the constants of this enum type, 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 type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (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 type has no constant with the specified nameNullPointerException- if the argument is null
-
isCommit
public boolean isCommit() -
isLocal
public boolean isLocal()
-