Enum AttributedTypeEnum
- java.lang.Object
-
- java.lang.Enum<AttributedTypeEnum>
-
- org.wildfly.extension.picketlink.idm.model.AttributedTypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AttributedTypeEnum>
public enum AttributedTypeEnum extends Enum<AttributedTypeEnum>
Enum defining alias for each supported built-in
org.picketlink.idm.model.AttributedTypeprovided 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 ACCOUNTAGENTGRANTGROUPGROUP_MEMBERSHIPGROUP_ROLEIDENTITY_TYPEPARTITIONPERMISSIONREALMRELATIONSHIPROLETIERUSER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static StringforType(String alias)StringgetAlias()StringtoString()static AttributedTypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AttributedTypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARTITION
public static final AttributedTypeEnum PARTITION
-
IDENTITY_TYPE
public static final AttributedTypeEnum IDENTITY_TYPE
-
ACCOUNT
public static final AttributedTypeEnum ACCOUNT
-
RELATIONSHIP
public static final AttributedTypeEnum RELATIONSHIP
-
PERMISSION
public static final AttributedTypeEnum PERMISSION
-
REALM
public static final AttributedTypeEnum REALM
-
TIER
public static final AttributedTypeEnum TIER
-
AGENT
public static final AttributedTypeEnum AGENT
-
USER
public static final AttributedTypeEnum USER
-
ROLE
public static final AttributedTypeEnum ROLE
-
GROUP
public static final AttributedTypeEnum GROUP
-
GRANT
public static final AttributedTypeEnum GRANT
-
GROUP_ROLE
public static final AttributedTypeEnum GROUP_ROLE
-
GROUP_MEMBERSHIP
public static final AttributedTypeEnum GROUP_MEMBERSHIP
-
-
Method Detail
-
values
public static AttributedTypeEnum[] 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 (AttributedTypeEnum c : AttributedTypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AttributedTypeEnum 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<AttributedTypeEnum>
-
getAlias
public String getAlias()
-
-