public enum EntrySelectionType extends Enum<EntrySelectionType>
Enum Constant and Description |
---|
COLLECTION |
FOLDER |
SEARCH |
Modifier and Type | Method and Description |
---|---|
static EntrySelectionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EntrySelectionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EntrySelectionType SEARCH
public static final EntrySelectionType COLLECTION
public static final EntrySelectionType FOLDER
public static EntrySelectionType[] values()
for (EntrySelectionType c : EntrySelectionType.values()) System.out.println(c);
public static EntrySelectionType 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 © 2017. All rights reserved.