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