public enum EnumMapModifyMode extends java.lang.Enum<EnumMapModifyMode>
| Enum Constant and Description |
|---|
AFTER
mode for after index
|
CURRENT
mode for current index
|
REPLACE
mode for replace index
|
| Modifier and Type | Method and Description |
|---|---|
int |
getValue()
Returns the int value of this enum.
|
static EnumMapModifyMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumMapModifyMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumMapModifyMode CURRENT
public static final EnumMapModifyMode AFTER
public static final EnumMapModifyMode REPLACE
public static EnumMapModifyMode[] values()
for (EnumMapModifyMode c : EnumMapModifyMode.values()) System.out.println(c);
public static EnumMapModifyMode valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getValue()