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