JavaScript is disabled on your browser.
Enum Constant Summary
Enum Constants
Secure setting values equal on all nodes
mark this setting as deprecated
iff this setting can be dynamically updateable
should be filtered in some api (mask password/credentials)
mark this setting as final, not updateable even when the context is not dynamic
ie.
Indicates an index-level setting that is managed internally.
Mark this setting as not copyable during an index resize (shrink or split).
Operator only Dynamic setting
Indicates an index-level setting that is privately managed.
Method Summary
All Methods Static Methods Concrete Methods
Returns the enum constant of this class with the specified name.
Returns an array containing the constants of this enum class, in
the order they are declared.
Methods inherited from class java.lang.Enum
clone , compareTo , describeConstable , equals , finalize , getDeclaringClass , hashCode , name , ordinal , toString , valueOf
Enum Constant Details
Filtered
should be filtered in some api (mask password/credentials)
Dynamic
iff this setting can be dynamically updateable
OperatorDynamic
Operator only Dynamic setting
Final
mark this setting as final, not updateable even when the context is not dynamic
ie. Setting this property on an index scoped setting will fail update when the index is closed
Deprecated
mark this setting as deprecated
Consistent
Secure setting values equal on all nodes
NotCopyableOnResize
Mark this setting as not copyable during an index resize (shrink or split). This property can only be applied to settings that
also have
IndexScope
.
InternalIndex
Indicates an index-level setting that is managed internally. Such a setting can only be added to an index on index creation but
can not be updated via the update API.
PrivateIndex
Indicates an index-level setting that is privately managed. Such a setting can not even be set on index creation.
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 name
NullPointerException
- if the argument is null