public enum RecycleBinItemType extends java.lang.Enum<RecycleBinItemType>
| Enum Constant and Description |
|---|
ATTACHMENT |
CASCADE_PARENT |
FILE |
FILE_VERSION |
FOLDER |
FOLDER_WITH_LISTS |
LIST |
LIST_ITEM |
LIST_ITEM_VERSION |
NONE |
| Modifier and Type | Method and Description |
|---|---|
static RecycleBinItemType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RecycleBinItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecycleBinItemType ATTACHMENT
public static final RecycleBinItemType CASCADE_PARENT
public static final RecycleBinItemType FILE
public static final RecycleBinItemType FILE_VERSION
public static final RecycleBinItemType FOLDER
public static final RecycleBinItemType FOLDER_WITH_LISTS
public static final RecycleBinItemType LIST
public static final RecycleBinItemType LIST_ITEM
public static final RecycleBinItemType LIST_ITEM_VERSION
public static final RecycleBinItemType NONE
public static RecycleBinItemType 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 nullpublic static RecycleBinItemType[] values()
for (RecycleBinItemType c : RecycleBinItemType.values()) System.out.println(c);