public enum FolderQueryTraversal extends java.lang.Enum<FolderQueryTraversal>
| 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.
|
SOFT_DELETED
Performs a shallow traversal search for soft deleted items
|
| Modifier and Type | Method and Description |
|---|---|
static FolderQueryTraversal |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FolderQueryTraversal[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FolderQueryTraversal SHALLOW
public static final FolderQueryTraversal DEEP
public static final FolderQueryTraversal SOFT_DELETED
public static FolderQueryTraversal[] values()
for (FolderQueryTraversal c : FolderQueryTraversal.values()) System.out.println(c);
public static FolderQueryTraversal 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