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