public static enum SpecialSubject.Type extends java.lang.Enum<SpecialSubject.Type>
Enum Constant and Description |
---|
ALL_AUTHENTICATED_IN_TRUSTED_REALMS |
ALL_AUTHENTICATED_USERS |
EVERYONE |
SERVER |
Modifier and Type | Method and Description |
---|---|
static SpecialSubject.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SpecialSubject.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecialSubject.Type EVERYONE
public static final SpecialSubject.Type ALL_AUTHENTICATED_USERS
public static final SpecialSubject.Type ALL_AUTHENTICATED_IN_TRUSTED_REALMS
public static final SpecialSubject.Type SERVER
public static SpecialSubject.Type[] values()
for (SpecialSubject.Type c : SpecialSubject.Type.values()) System.out.println(c);
public static SpecialSubject.Type 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