Enum SearchFeature
java.lang.Object
java.lang.Enum<SearchFeature>
com.orchestranetworks.addon.dama.externalmanagement.search.SearchFeature
- All Implemented Interfaces:
Serializable
,Comparable<SearchFeature>
,Constable
This enumeration define list of available searching features
- Since:
- 2.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSearches for a digital asset using asset typeCreated date or creation date for searchingSearches for a digital asset using extensionKeyword or input text for searchingTags of asset for searchingUpdated date or Last update date for searching -
Method Summary
Modifier and TypeMethodDescriptionstatic SearchFeature
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.Methods inherited from class java.lang.Enum
compareTo, describeConstable, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
-
Enum Constant Details
-
EXTENSION
Searches for a digital asset using extension -
ASSET_TYPE
Searches for a digital asset using asset type -
TAGS
Tags of asset for searching -
KEYWORD
Keyword or input text for searching -
CREATED_DATE
Created date or creation date for searching -
UPDATED_DATE
Updated date or Last update date for searching
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-