public enum SearchFeature extends Enum<SearchFeature>
Enum Constant and Description |
---|
ASSET_TYPE
Searches for a digital asset using asset type
|
CREATED_DATE
Created date or creation date for searching
|
EXTENSION
Searches for a digital asset using extension
|
KEYWORD
Keyword or input text for searching
|
TAGS
Tags of asset for searching
|
UPDATED_DATE
Updated date or Last update date for searching
|
Modifier and Type | Method and Description |
---|---|
static SearchFeature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SearchFeature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SearchFeature EXTENSION
public static final SearchFeature ASSET_TYPE
public static final SearchFeature TAGS
public static final SearchFeature KEYWORD
public static final SearchFeature CREATED_DATE
public static final SearchFeature UPDATED_DATE
public static SearchFeature[] values()
for (SearchFeature c : SearchFeature.values()) System.out.println(c);
public static SearchFeature 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 null