public enum ObjectFlowEffectKind extends Enum<ObjectFlowEffectKind>
Enum Constant and Description |
---|
CREATEFLOW |
DELETEFLOW |
EXCEPTIONFLOW |
READFLOW |
UPDATEFLOW |
Modifier and Type | Field and Description |
---|---|
static int |
CREATEFLOW_VALUE |
static int |
DELETEFLOW_VALUE |
static int |
EXCEPTIONFLOW_VALUE |
static int |
READFLOW_VALUE |
static int |
UPDATEFLOW_VALUE |
static List<ObjectFlowEffectKind> |
VALUES |
Modifier and Type | Method and Description |
---|---|
static ObjectFlowEffectKind |
get(int value) |
static ObjectFlowEffectKind |
get(String literal) |
static ObjectFlowEffectKind |
getByName(String name) |
String |
getLiteral() |
String |
getName() |
int |
getValue() |
String |
toString() |
static ObjectFlowEffectKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ObjectFlowEffectKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ObjectFlowEffectKind CREATEFLOW
public static final ObjectFlowEffectKind READFLOW
public static final ObjectFlowEffectKind UPDATEFLOW
public static final ObjectFlowEffectKind DELETEFLOW
public static final ObjectFlowEffectKind EXCEPTIONFLOW
public static final int CREATEFLOW_VALUE
public static final int READFLOW_VALUE
public static final int UPDATEFLOW_VALUE
public static final int DELETEFLOW_VALUE
public static final int EXCEPTIONFLOW_VALUE
public static final List<ObjectFlowEffectKind> VALUES
public static ObjectFlowEffectKind[] values()
for (ObjectFlowEffectKind c : ObjectFlowEffectKind.values()) System.out.println(c);
public static ObjectFlowEffectKind 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 ObjectFlowEffectKind get(String literal)
public static ObjectFlowEffectKind getByName(String name)
public static ObjectFlowEffectKind get(int value)
public int getValue()
public String getName()
public String getLiteral()
public String toString()
toString
in class Enum<ObjectFlowEffectKind>