public static enum SearchFilterDefinition.FolderResult extends java.lang.Enum<SearchFilterDefinition.FolderResult>
| Enum Constant | Description |
|---|---|
DO_NOT_TRAVERSE |
Constant representing answer "do not traverse the folder".
|
TRAVERSE |
Constant representing answer "traverse the folder".
|
TRAVERSE_ALL_SUBFOLDERS |
Constant representing answer "traverse the folder and all its
direct and indirect children (both files and subfolders)".
|
| Modifier and Type | Method | Description |
|---|---|---|
static SearchFilterDefinition.FolderResult |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static SearchFilterDefinition.FolderResult[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFilterDefinition.FolderResult DO_NOT_TRAVERSE
public static final SearchFilterDefinition.FolderResult TRAVERSE
public static final SearchFilterDefinition.FolderResult TRAVERSE_ALL_SUBFOLDERS
public static SearchFilterDefinition.FolderResult[] values()
for (SearchFilterDefinition.FolderResult c : SearchFilterDefinition.FolderResult.values()) System.out.println(c);
public static SearchFilterDefinition.FolderResult 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 nullBuilt on April 24 2018. | Portions Copyright 1997-2018 Oracle. All rights reserved.