Enum RoleGeneratorTypeEnum
- java.lang.Object
-
- java.lang.Enum<RoleGeneratorTypeEnum>
-
- org.wildfly.extension.picketlink.federation.model.idp.RoleGeneratorTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<RoleGeneratorTypeEnum>
public enum RoleGeneratorTypeEnum extends Enum<RoleGeneratorTypeEnum>
Enum defining alias for each supported built-in org.picketlink.identity.federation.core.interfaces.RoleGenerator provided by PicketLink. The alias is used in the configuration without using the full qualified name of a type.
- Author:
- Pedro Igor
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EMPTY_ROLE_GENERATORUNDERTOW_ROLE_GENERATOR
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringtoString()static RoleGeneratorTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static RoleGeneratorTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
UNDERTOW_ROLE_GENERATOR
public static final RoleGeneratorTypeEnum UNDERTOW_ROLE_GENERATOR
-
EMPTY_ROLE_GENERATOR
public static final RoleGeneratorTypeEnum EMPTY_ROLE_GENERATOR
-
-
Method Detail
-
values
public static RoleGeneratorTypeEnum[] 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 (RoleGeneratorTypeEnum c : RoleGeneratorTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static RoleGeneratorTypeEnum 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
-
toString
public String toString()
- Overrides:
toStringin classEnum<RoleGeneratorTypeEnum>
-
-