|
|
|
|
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<User.State>
org.torweg.pulse.accesscontrol.User.State
public static enum User.State
the state of the User.
| Enum Constant Summary | |
|---|---|
ACTIVE
the user is active. |
|
EXPUNGED
the user is expunged, but could not be deleted due to foreign key constraints. |
|
INACTIVE
the user is not active. |
|
| Method Summary | |
|---|---|
static User.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static User.State[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final User.State INACTIVE
public static final User.State ACTIVE
public static final User.State EXPUNGED
| Method Detail |
|---|
public static final User.State[] values()
for(User.State c : User.State.values())
System.out.println(c);
public static User.State 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 name
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||