public static enum BoxCollaborator.GroupType extends Enum<BoxCollaborator.GroupType>
| Enum Constant and Description |
|---|
ALL_USERS_GROUP
A users group.
|
MANAGED_GROUP
A managed group.
|
| Modifier and Type | Method and Description |
|---|---|
static BoxCollaborator.GroupType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxCollaborator.GroupType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxCollaborator.GroupType ALL_USERS_GROUP
public static final BoxCollaborator.GroupType MANAGED_GROUP
public static BoxCollaborator.GroupType[] values()
for (BoxCollaborator.GroupType c : BoxCollaborator.GroupType.values()) System.out.println(c);
public static BoxCollaborator.GroupType 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