public static enum BoxCollaborationAllowlist.AllowlistDirection extends Enum<BoxCollaborationAllowlist.AllowlistDirection>
| Enum Constant and Description |
|---|
BOTH
Allowlist both inbound and outbound collaboration.
|
INBOUND
Allowlist inbound collaboration.
|
OUTBOUND
Allowlist outbound collaboration.
|
| Modifier and Type | Method and Description |
|---|---|
String |
toString()
Returns a String containing the current direction of the collaboration allowlisting.
|
static BoxCollaborationAllowlist.AllowlistDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxCollaborationAllowlist.AllowlistDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxCollaborationAllowlist.AllowlistDirection INBOUND
public static final BoxCollaborationAllowlist.AllowlistDirection OUTBOUND
public static final BoxCollaborationAllowlist.AllowlistDirection BOTH
public static BoxCollaborationAllowlist.AllowlistDirection[] values()
for (BoxCollaborationAllowlist.AllowlistDirection c : BoxCollaborationAllowlist.AllowlistDirection.values()) System.out.println(c);
public static BoxCollaborationAllowlist.AllowlistDirection 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 nullpublic String toString()
toString in class Enum<BoxCollaborationAllowlist.AllowlistDirection>