public static enum BoxCollaboration.Status extends Enum<BoxCollaboration.Status>
Enum Constant and Description |
---|
ACCEPTED
The collaboration has been accepted.
|
PENDING
The collaboration is waiting to be accepted or rejected.
|
REJECTED
The collaboration has been rejected.
|
Modifier and Type | Method and Description |
---|---|
static BoxCollaboration.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxCollaboration.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxCollaboration.Status ACCEPTED
public static final BoxCollaboration.Status PENDING
public static final BoxCollaboration.Status REJECTED
public static BoxCollaboration.Status[] values()
for (BoxCollaboration.Status c : BoxCollaboration.Status.values()) System.out.println(c);
public static BoxCollaboration.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