public enum TeamFolderType extends java.lang.Enum<TeamFolderType>
| Enum Constant and Description |
|---|
CLASSIC
CLASSIC team folder refers to the traditional team folder that is shared between the invited
Managers, Collaborators, and Viewers.
|
GROUP
GROUP team folder refers to filesystems mapped in E2FS that is shared with groups or multiple
users.
|
HOME
HOME team folder refers to filesystems mapped in E2FS that belongs to a single user.
|
| Modifier and Type | Method and Description |
|---|---|
static TeamFolderType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TeamFolderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TeamFolderType CLASSIC
public static final TeamFolderType HOME
public static final TeamFolderType GROUP
public static TeamFolderType[] values()
for (TeamFolderType c : TeamFolderType.values()) System.out.println(c);
public static TeamFolderType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null