public enum SearchMode extends java.lang.Enum<SearchMode>
| Enum Constant and Description | 
|---|
| DELETED_FILENAMESearch for deleted file and folder names. | 
| FILENAMESearch file and folder names. | 
| FILENAME_AND_CONTENTSearch file and folder names as well as file contents. | 
| Modifier and Type | Method and Description | 
|---|---|
| static SearchMode | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static SearchMode[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final SearchMode FILENAME
public static final SearchMode FILENAME_AND_CONTENT
public static final SearchMode DELETED_FILENAME
public static SearchMode[] values()
for (SearchMode c : SearchMode.values()) System.out.println(c);
public static SearchMode 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