public enum FilesystemType extends java.lang.Enum<FilesystemType>
| Enum Constant and Description |
|---|
BACKUP
Backup folder, not exposed to other users
|
MOBILIZED
Mobilized folder, data is being exposed by anywhere but not stored
|
PRIVATE
Private folder, owned and accessible by only one user
|
SHARED
Shared folder, owned by a single user
|
TEAM
Team folder, managed by a group of users and with its own quota
|
| Modifier and Type | Method and Description |
|---|---|
static FilesystemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilesystemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilesystemType PRIVATE
public static final FilesystemType SHARED
public static final FilesystemType TEAM
public static final FilesystemType MOBILIZED
public static final FilesystemType BACKUP
public static FilesystemType[] values()
for (FilesystemType c : FilesystemType.values()) System.out.println(c);
public static FilesystemType 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