Package org.openiam.property.domain
Enum PropertyCategory
- java.lang.Object
-
- java.lang.Enum<PropertyCategory>
-
- org.openiam.property.domain.PropertyCategory
-
- All Implemented Interfaces:
Serializable
,Comparable<PropertyCategory>
public enum PropertyCategory extends Enum<PropertyCategory>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description Authentication
ChallengeResponse
CustomRedirect
DirectoryLookup
Gateway
IP
Organization
Password
System
SystemAuditLog
UI
UserEntitlements
Workflow
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static PropertyCategory
valueOf(String name)
Returns the enum constant of this type with the specified name.static PropertyCategory[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Password
public static final PropertyCategory Password
-
UI
public static final PropertyCategory UI
-
ChallengeResponse
public static final PropertyCategory ChallengeResponse
-
Organization
public static final PropertyCategory Organization
-
System
public static final PropertyCategory System
-
Workflow
public static final PropertyCategory Workflow
-
Authentication
public static final PropertyCategory Authentication
-
DirectoryLookup
public static final PropertyCategory DirectoryLookup
-
SystemAuditLog
public static final PropertyCategory SystemAuditLog
-
CustomRedirect
public static final PropertyCategory CustomRedirect
-
UserEntitlements
public static final PropertyCategory UserEntitlements
-
IP
public static final PropertyCategory IP
-
Gateway
public static final PropertyCategory Gateway
-
-
Method Detail
-
values
public static PropertyCategory[] 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 (PropertyCategory c : PropertyCategory.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static PropertyCategory 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
-
-