Package org.apache.ignite.internal.util
Enum IgniteTree.OperationType
- java.lang.Object
-
- java.lang.Enum<IgniteTree.OperationType>
-
- org.apache.ignite.internal.util.IgniteTree.OperationType
-
- All Implemented Interfaces:
Serializable,Comparable<IgniteTree.OperationType>
- Enclosing interface:
- IgniteTree<L,T>
public static enum IgniteTree.OperationType extends Enum<IgniteTree.OperationType>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static IgniteTree.OperationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static IgniteTree.OperationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOOP
public static final IgniteTree.OperationType NOOP
-
REMOVE
public static final IgniteTree.OperationType REMOVE
-
PUT
public static final IgniteTree.OperationType PUT
-
IN_PLACE
public static final IgniteTree.OperationType IN_PLACE
-
-
Method Detail
-
values
public static IgniteTree.OperationType[] 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 (IgniteTree.OperationType c : IgniteTree.OperationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static IgniteTree.OperationType valueOf(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:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-