Package org.apache.calcite.config
Enum NullCollation
- All Implemented Interfaces:
Serializable
,Comparable<NullCollation>
,Constable
Strategy for how NULL values are to be sorted if NULLS FIRST or NULLS LAST
are not specified in an item in the ORDER BY clause.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
isDefaultOrder
(boolean nullsFirst, boolean desc) Returns whether a given combination of null direction and sort order is the default order of nulls returned in the ORDER BY clause.boolean
last
(boolean desc) Returns whether NULL values should appear last.static NullCollation
Returns the enum constant of this type with the specified name.static NullCollation[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
HIGH
Nulls first for DESC, nulls last for ASC. -
LOW
Nulls last for DESC, nulls first for ASC. -
FIRST
Nulls first for DESC and ASC. -
LAST
Nulls last for DESC and ASC.
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
last
public boolean last(boolean desc) Returns whether NULL values should appear last.- Parameters:
desc
- Whether sort is descending
-
isDefaultOrder
public boolean isDefaultOrder(boolean nullsFirst, boolean desc) Returns whether a given combination of null direction and sort order is the default order of nulls returned in the ORDER BY clause.
-