public enum SearchFolderTraversal extends java.lang.Enum<SearchFolderTraversal>
| Enum Constant and Description |
|---|
DEEP
Searches in all subfolders of the identified parent folder and returns only the folder IDs for items that have not been deleted.
|
SHALLOW
Searches only the identified folder and returns only the folder IDs for items that have not been deleted.
|
| Modifier and Type | Method and Description |
|---|---|
static SearchFolderTraversal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SearchFolderTraversal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFolderTraversal SHALLOW
public static final SearchFolderTraversal DEEP
public static SearchFolderTraversal[] values()
for (SearchFolderTraversal c : SearchFolderTraversal.values()) System.out.println(c);
public static SearchFolderTraversal 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