public enum ParameterEffectKind extends Enum<ParameterEffectKind>
Enum Constant and Description |
---|
CREATEEFFECT |
DELETEEFFECT |
READEFFECT |
UPDATEEFFECT |
Modifier and Type | Field and Description |
---|---|
static int |
CREATEEFFECT_VALUE |
static int |
DELETEEFFECT_VALUE |
static int |
READEFFECT_VALUE |
static int |
UPDATEEFFECT_VALUE |
static List<ParameterEffectKind> |
VALUES |
Modifier and Type | Method and Description |
---|---|
static ParameterEffectKind |
get(int value) |
static ParameterEffectKind |
get(String literal) |
static ParameterEffectKind |
getByName(String name) |
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString() |
static ParameterEffectKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ParameterEffectKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ParameterEffectKind CREATEEFFECT
public static final ParameterEffectKind READEFFECT
public static final ParameterEffectKind UPDATEEFFECT
public static final ParameterEffectKind DELETEEFFECT
public static final int CREATEEFFECT_VALUE
public static final int READEFFECT_VALUE
public static final int UPDATEEFFECT_VALUE
public static final int DELETEEFFECT_VALUE
public static final List<ParameterEffectKind> VALUES
public static ParameterEffectKind[] values()
for (ParameterEffectKind c : ParameterEffectKind.values()) System.out.println(c);
public static ParameterEffectKind valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic static ParameterEffectKind get(String literal)
public static ParameterEffectKind getByName(String name)
public static ParameterEffectKind get(int value)
public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString
in class Enum<ParameterEffectKind>