Enum NumbersInfo.ConfItem
- java.lang.Object
-
- java.lang.Enum<NumbersInfo.ConfItem>
-
- org.apache.syncope.common.lib.info.NumbersInfo.ConfItem
-
- All Implemented Interfaces:
Serializable
,Comparable<NumbersInfo.ConfItem>
- Enclosing class:
- NumbersInfo
public static enum NumbersInfo.ConfItem extends Enum<NumbersInfo.ConfItem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCOUNT_POLICY
ANY_TYPE
NOTIFICATION
PASSWORD_POLICY
PULL_TASK
RESOURCE
ROLE
SECURITY_QUESTION
VIR_SCHEMA
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static int
getScore(String name)
static NumbersInfo.ConfItem
valueOf(String name)
Returns the enum constant of this type with the specified name.static NumbersInfo.ConfItem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RESOURCE
public static final NumbersInfo.ConfItem RESOURCE
-
ACCOUNT_POLICY
public static final NumbersInfo.ConfItem ACCOUNT_POLICY
-
PASSWORD_POLICY
public static final NumbersInfo.ConfItem PASSWORD_POLICY
-
NOTIFICATION
public static final NumbersInfo.ConfItem NOTIFICATION
-
PULL_TASK
public static final NumbersInfo.ConfItem PULL_TASK
-
VIR_SCHEMA
public static final NumbersInfo.ConfItem VIR_SCHEMA
-
ANY_TYPE
public static final NumbersInfo.ConfItem ANY_TYPE
-
SECURITY_QUESTION
public static final NumbersInfo.ConfItem SECURITY_QUESTION
-
ROLE
public static final NumbersInfo.ConfItem ROLE
-
-
Method Detail
-
values
public static NumbersInfo.ConfItem[] 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 (NumbersInfo.ConfItem c : NumbersInfo.ConfItem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static NumbersInfo.ConfItem 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
-
getScore
public static int getScore(String name)
-
-