public static enum BoxUser.Status extends Enum<BoxUser.Status>
Enum Constant and Description |
---|
ACTIVE
The user's account is active.
|
CANNOT_DELETE_EDIT
The user's account cannot delete or edit content.
|
CANNOT_DELETE_EDIT_UPLOAD
The user's account cannot delete, edit, or upload content.
|
INACTIVE
The user's account is inactive.
|
Modifier and Type | Method and Description |
---|---|
static BoxUser.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxUser.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxUser.Status ACTIVE
public static final BoxUser.Status INACTIVE
public static final BoxUser.Status CANNOT_DELETE_EDIT
public static final BoxUser.Status CANNOT_DELETE_EDIT_UPLOAD
public static BoxUser.Status[] values()
for (BoxUser.Status c : BoxUser.Status.values()) System.out.println(c);
public static BoxUser.Status valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null