public static enum ModAttribute.ModType extends java.lang.Enum<ModAttribute.ModType>
| Enum Constant and Description |
|---|
ADD_VALUE |
DELETE_VALUE |
REPLACE_VALUE |
| Modifier and Type | Method and Description |
|---|---|
static ModAttribute.ModType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModAttribute.ModType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared.
|
public static final ModAttribute.ModType ADD_VALUE
public static final ModAttribute.ModType DELETE_VALUE
public static final ModAttribute.ModType REPLACE_VALUE
public static ModAttribute.ModType[] values()
for (ModAttribute.ModType c : ModAttribute.ModType.values())
System.out.println(c);
public static ModAttribute.ModType 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 null