public static enum BoxFileRequest.Status extends Enum<BoxFileRequest.Status>
Enum Constant and Description |
---|
ACTIVE
The file request can accept new submissions.
|
INACTIVE
The file request can't accept new submissions.
|
Modifier and Type | Method and Description |
---|---|
static BoxFileRequest.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxFileRequest.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxFileRequest.Status ACTIVE
public static final BoxFileRequest.Status INACTIVE
public static BoxFileRequest.Status[] values()
for (BoxFileRequest.Status c : BoxFileRequest.Status.values()) System.out.println(c);
public static BoxFileRequest.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