Package org.openiam.am.srvc.constants
Enum ApproveAuthParamResult
- java.lang.Object
-
- java.lang.Enum<ApproveAuthParamResult>
-
- org.openiam.am.srvc.constants.ApproveAuthParamResult
-
- All Implemented Interfaces:
Serializable
,Comparable<ApproveAuthParamResult>
public enum ApproveAuthParamResult extends Enum<ApproveAuthParamResult>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ALREADY_APPROVED
APPROVED
CAN_NOT_FIND_PARAMETER
ERROR_ON_APPROVE
FIND_MORE_ONE_PARAMETER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ApproveAuthParamResult
valueOf(String name)
Returns the enum constant of this type with the specified name.static ApproveAuthParamResult[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
APPROVED
public static final ApproveAuthParamResult APPROVED
-
ALREADY_APPROVED
public static final ApproveAuthParamResult ALREADY_APPROVED
-
CAN_NOT_FIND_PARAMETER
public static final ApproveAuthParamResult CAN_NOT_FIND_PARAMETER
-
FIND_MORE_ONE_PARAMETER
public static final ApproveAuthParamResult FIND_MORE_ONE_PARAMETER
-
ERROR_ON_APPROVE
public static final ApproveAuthParamResult ERROR_ON_APPROVE
-
-
Method Detail
-
values
public static ApproveAuthParamResult[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ApproveAuthParamResult c : ApproveAuthParamResult.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ApproveAuthParamResult valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-