Enum Class BuilderToken.SELECTFILTER
java.lang.Object
java.lang.Enum<BuilderToken.SELECTFILTER>
fr.gouv.vitam.common.database.builder.request.configuration.BuilderToken.SELECTFILTER
- All Implemented Interfaces:
Serializable
,Comparable<BuilderToken.SELECTFILTER>
,Constable
- Enclosing class:
- BuilderToken
SelectFilter model
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionAllows to specify some hints to the request server: cache/nocache
$hint : [ cache/nocache, ...Limit the elements returned to the nth first elements $limit : nAccording to an orderby, start to return the elements from rank start
$offset : startSpecify an orderby to respect in the return of the elements according to one field named 'name' and an orderby ascendant (+1) or descendant (-1)
$orderby : [ { key : +/-1 } ]scrollId for scroll functionality $scrollIdscrollTimeout expiry time for scrollIdAllow computing total hits. -
Method Summary
Modifier and TypeMethodDescriptionfinal String
static BuilderToken.SELECTFILTER
Returns the enum constant of this class with the specified name.static BuilderToken.SELECTFILTER[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LIMIT
Limit the elements returned to the nth first elements $limit : n -
SCROLL_ID
scrollId for scroll functionality $scrollId -
SCROLL_TIMEOUT
scrollTimeout expiry time for scrollId -
OFFSET
According to an orderby, start to return the elements from rank start
$offset : start -
ORDERBY
Specify an orderby to respect in the return of the elements according to one field named 'name' and an orderby ascendant (+1) or descendant (-1)
$orderby : [ { key : +/-1 } ] -
HINT
Allows to specify some hints to the request server: cache/nocache
$hint : [ cache/nocache, ... ] -
TRACK_TOTAL_HITS
Allow computing total hits.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException
- if the argument is null
-
exactToken
- Returns:
- the exact token
-