public enum ADFIdentityType extends java.lang.Enum<ADFIdentityType>
Enum Constant and Description |
---|
ANONYMOUS_ROLE |
APPLICATION_ROLE |
AUTHENTICATED_ROLE |
ROLE |
USER |
Modifier and Type | Method and Description |
---|---|
static ADFIdentityType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ADFIdentityType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ADFIdentityType APPLICATION_ROLE
public static final ADFIdentityType AUTHENTICATED_ROLE
public static final ADFIdentityType ANONYMOUS_ROLE
public static final ADFIdentityType ROLE
public static final ADFIdentityType USER
public static ADFIdentityType[] values()
for (ADFIdentityType c : ADFIdentityType.values()) System.out.println(c);
public static ADFIdentityType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null