Enum Class Preference
- All Implemented Interfaces:
Serializable
,Comparable<Preference>
,Constable
Routing Preference Type
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionRoute to local node, if possibleRoute to the local shard onlyRoute to only node with attributeRoute to preferred nodes, if possibleRoute to specific shards -
Method Summary
Modifier and TypeMethodDescriptionstatic Preference
Parses the Preference Type given a stringtype()
static Preference
Returns the enum constant of this class with the specified name.static Preference[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
SHARDS
Route to specific shards -
PREFER_NODES
Route to preferred nodes, if possible -
LOCAL
Route to local node, if possible -
ONLY_LOCAL
Route to the local shard only -
ONLY_NODES
Route to only node with attribute
-
-
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
-
type
-
parse
Parses the Preference Type given a string
-