public enum WorkspaceItemType extends Enum<WorkspaceItemType>
| Enum Constant and Description |
|---|
FILE_ITEM
A folder item.
|
FOLDER
A folder.
|
SHARED_FOLDER
A shared folder
|
SMART_FOLDER
A smart folder
|
TRASH_FOLDER
A trash folder.
|
TRASH_ITEM
A trash item.
|
VRE_FOLDER
The vre folder.
|
| Modifier and Type | Method and Description |
|---|---|
static WorkspaceItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WorkspaceItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WorkspaceItemType FOLDER
public static final WorkspaceItemType SHARED_FOLDER
public static final WorkspaceItemType SMART_FOLDER
public static final WorkspaceItemType VRE_FOLDER
public static final WorkspaceItemType FILE_ITEM
public static final WorkspaceItemType TRASH_FOLDER
public static final WorkspaceItemType TRASH_ITEM
public static WorkspaceItemType[] values()
for (WorkspaceItemType c : WorkspaceItemType.values()) System.out.println(c);
public static WorkspaceItemType 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 nullCopyright © 2019. All Rights Reserved.