Package org.openiam.constants
Enum AccessCertificationConstant
- java.lang.Object
-
- java.lang.Enum<AccessCertificationConstant>
-
- org.openiam.constants.AccessCertificationConstant
-
- All Implemented Interfaces:
Serializable
,Comparable<AccessCertificationConstant>
public enum AccessCertificationConstant extends Enum<AccessCertificationConstant>
Created by IntelliJ IDEA.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description APPLICATION_CERTIFICATION
GROUP_CERTIFICATION
TARGET_TYPE_ALL
TARGET_TYPE_GROUP
TARGET_TYPE_ORGANIZATION
TARGET_TYPE_ROLE
TARGET_TYPE_USER
USER_CERTIFICATION
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
static AccessCertificationConstant
valueOf(String name)
Returns the enum constant of this type with the specified name.static AccessCertificationConstant[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USER_CERTIFICATION
public static final AccessCertificationConstant USER_CERTIFICATION
-
APPLICATION_CERTIFICATION
public static final AccessCertificationConstant APPLICATION_CERTIFICATION
-
GROUP_CERTIFICATION
public static final AccessCertificationConstant GROUP_CERTIFICATION
-
TARGET_TYPE_ALL
public static final AccessCertificationConstant TARGET_TYPE_ALL
-
TARGET_TYPE_USER
public static final AccessCertificationConstant TARGET_TYPE_USER
-
TARGET_TYPE_ORGANIZATION
public static final AccessCertificationConstant TARGET_TYPE_ORGANIZATION
-
TARGET_TYPE_GROUP
public static final AccessCertificationConstant TARGET_TYPE_GROUP
-
TARGET_TYPE_ROLE
public static final AccessCertificationConstant TARGET_TYPE_ROLE
-
-
Method Detail
-
values
public static AccessCertificationConstant[] 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 (AccessCertificationConstant c : AccessCertificationConstant.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AccessCertificationConstant 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
-
getValue
public String getValue()
-
-