Module org.elasticsearch.server
Enum Class PipelineDescriptor.DataType
java.lang.Object
java.lang.Enum<PipelineDescriptor.DataType>
org.elasticsearch.index.codec.tsdb.pipeline.PipelineDescriptor.DataType
- All Implemented Interfaces:
Serializable,Comparable<PipelineDescriptor.DataType>,Constable
- Enclosing class:
PipelineDescriptor
The numeric data type stored in encoded blocks.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum Constants -
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic PipelineDescriptor.DataTypefromId(byte id) Resolves a persisted byte identifier back to itsPipelineDescriptor.DataType.static PipelineDescriptor.DataTypeReturns the enum constant of this class with the specified name.static PipelineDescriptor.DataType[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LONG
64-bit signed integer values. -
DOUBLE
64-bit IEEE 754 floating-point values. -
FLOAT
32-bit IEEE 754 floating-point values.
-
-
Field Details
-
id
public final byte idPersisted byte identifier for this data type.
-
-
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
-
fromId
Resolves a persisted byte identifier back to itsPipelineDescriptor.DataType.- Parameters:
id- the byte identifier read from the encoded data- Returns:
- the corresponding
PipelineDescriptor.DataType - Throws:
IOException- if the identifier is unknown (corrupt data)
-