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