Package io.keikai.range.impl
Enum ModelUpdate.UpdateType
- java.lang.Object
-
- java.lang.Enum<ModelUpdate.UpdateType>
-
- io.keikai.range.impl.ModelUpdate.UpdateType
-
- All Implemented Interfaces:
Serializable
,Comparable<ModelUpdate.UpdateType>
- Enclosing class:
- ModelUpdate
public static enum ModelUpdate.UpdateType extends Enum<ModelUpdate.UpdateType>
- Since:
- 3.5.0
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ModelUpdate.UpdateType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ModelUpdate.UpdateType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REF
public static final ModelUpdate.UpdateType REF
-
REFS
public static final ModelUpdate.UpdateType REFS
-
CELL
public static final ModelUpdate.UpdateType CELL
-
CELLS
public static final ModelUpdate.UpdateType CELLS
-
MERGE
public static final ModelUpdate.UpdateType MERGE
-
INSERT_DELETE
public static final ModelUpdate.UpdateType INSERT_DELETE
-
FILTER
public static final ModelUpdate.UpdateType FILTER
-
-
Method Detail
-
values
public static ModelUpdate.UpdateType[] 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 (ModelUpdate.UpdateType c : ModelUpdate.UpdateType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ModelUpdate.UpdateType 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
-
-