Enum BuilderToken.FACET
- java.lang.Object
-
- java.lang.Enum<BuilderToken.FACET>
-
- fr.gouv.vitam.common.database.builder.request.configuration.BuilderToken.FACET
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BuilderToken.FACET>
- Enclosing class:
- BuilderToken
public static enum BuilderToken.FACET extends java.lang.Enum<BuilderToken.FACET>
FACET model
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DATE_RANGE
FILTERS
TERMS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
exactToken()
static BuilderToken.FACET
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BuilderToken.FACET[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
TERMS
public static final BuilderToken.FACET TERMS
-
DATE_RANGE
public static final BuilderToken.FACET DATE_RANGE
-
FILTERS
public static final BuilderToken.FACET FILTERS
-
-
Method Detail
-
values
public static BuilderToken.FACET[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (BuilderToken.FACET c : BuilderToken.FACET.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BuilderToken.FACET valueOf(java.lang.String name)
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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
exactToken
public final java.lang.String exactToken()
- Returns:
- the exact token
-
-