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 SummaryNested classes/interfaces inherited from class java.lang.EnumEnum.EnumDesc<E extends Enum<E>>
- 
Enum Constant SummaryEnum Constants
- 
Method SummaryModifier and TypeMethodDescriptionbooleanisDefaultOrder(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.booleanlast(boolean desc) Returns whether NULL values should appear last.static NullCollationReturns 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- 
HIGHNulls first for DESC, nulls last for ASC.
- 
LOWNulls last for DESC, nulls first for ASC.
- 
FIRSTNulls first for DESC and ASC.
- 
LASTNulls last for DESC and ASC.
 
- 
- 
Method Details- 
valuesReturns 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
 
- 
valueOfReturns 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 name
- NullPointerException- if the argument is null
 
- 
lastpublic boolean last(boolean desc) Returns whether NULL values should appear last.- Parameters:
- desc- Whether sort is descending
 
- 
isDefaultOrderpublic 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.
 
-