Enum Class FillMode
- All Implemented Interfaces:
Serializable
,Comparable<FillMode>
,Constable
The FillMode enum represents the different modes
that can be used to fill missing data windows within processed query results.
DERIVED: The missing data is derived from the data's datatype. If floating point, linear is used, otherwise repeated is used.
LINEAR: The missing data is filled using linear interpolation of the surrounding windows.
REPEATED: The missing data is filled by repeating the last known value.
NULL: The missing data is filled with null values.
NONE: This mode does not fill missing data. Instead, it excludes the missing window from the results.
DERIVED: The missing data is derived from the data's datatype. If floating point, linear is used, otherwise repeated is used.
LINEAR: The missing data is filled using linear interpolation of the surrounding windows.
REPEATED: The missing data is filled by repeating the last known value.
NULL: The missing data is filled with null values.
NONE: This mode does not fill missing data. Instead, it excludes the missing window from the results.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum Constants -
Method Summary
Modifier and TypeMethodDescriptionfromString
(String value) Returns an Optional of FillMode that matches the given string.static FillMode
Returns the enum constant of this class with the specified name.static FillMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DERIVED
-
LINEAR
-
PREV
-
NULL
-
NONE
-
-
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
-
fromString
Returns an Optional of FillMode that matches the given string. The match is case-insensitive. If no match is found, an empty Optional is returned.- Parameters:
value
- The string to match.- Returns:
- An Optional of FillMode.
-