public enum ActionTypeEnum extends java.lang.Enum<ActionTypeEnum>
| Enum Constant and Description |
|---|
ADD |
BIND |
DELETE |
MODIFY |
UNBIND |
UPDATE |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getActionCode() |
java.lang.String |
getActionType() |
void |
setActionCode(java.lang.String actionCode) |
void |
setActionType(java.lang.String actionType) |
static ActionTypeEnum |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ActionTypeEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActionTypeEnum BIND
public static final ActionTypeEnum UNBIND
public static final ActionTypeEnum ADD
public static final ActionTypeEnum MODIFY
public static final ActionTypeEnum UPDATE
public static final ActionTypeEnum DELETE
public static ActionTypeEnum[] values()
for (ActionTypeEnum c : ActionTypeEnum.values()) System.out.println(c);
public static ActionTypeEnum 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 java.lang.String getActionCode()
public void setActionCode(java.lang.String actionCode)
public java.lang.String getActionType()
public void setActionType(java.lang.String actionType)