Package org.infinispan.scattered
Enum ScatteredVersionManager.SegmentState
- java.lang.Object
-
- java.lang.Enum<ScatteredVersionManager.SegmentState>
-
- org.infinispan.scattered.ScatteredVersionManager.SegmentState
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ScatteredVersionManager.SegmentState>
- Enclosing interface:
- ScatteredVersionManager<K>
public static enum ScatteredVersionManager.SegmentState extends java.lang.Enum<ScatteredVersionManager.SegmentState>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BLOCKED
KEY_TRANSFER
NOT_OWNED
OWNED
VALUE_TRANSFER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description char
singleChar()
static ScatteredVersionManager.SegmentState
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ScatteredVersionManager.SegmentState[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOT_OWNED
public static final ScatteredVersionManager.SegmentState NOT_OWNED
-
BLOCKED
public static final ScatteredVersionManager.SegmentState BLOCKED
-
KEY_TRANSFER
public static final ScatteredVersionManager.SegmentState KEY_TRANSFER
-
VALUE_TRANSFER
public static final ScatteredVersionManager.SegmentState VALUE_TRANSFER
-
OWNED
public static final ScatteredVersionManager.SegmentState OWNED
-
-
Method Detail
-
values
public static ScatteredVersionManager.SegmentState[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ScatteredVersionManager.SegmentState c : ScatteredVersionManager.SegmentState.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ScatteredVersionManager.SegmentState valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
singleChar
public char singleChar()
-
-