Package org.h2.mode
Enum Class DefaultNullOrdering
- All Implemented Interfaces:
Serializable,Comparable<DefaultNullOrdering>,Constable
Default ordering of NULL values.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionNULL values are sorted before other values, no matter if ascending or descending order is used.NULL values are considered as larger than other values during sorting.NULL values are sorted after other values, no matter if ascending or descending order is used.NULL values are considered as smaller than other values during sorting. -
Method Summary
Modifier and TypeMethodDescriptionintaddExplicitNullOrdering(int sortType) Returns a sort type bit mask withSortOrder.NULLS_FIRSTorSortOrder.NULLS_LASTexplicitly setintcompareNull(boolean aNull, int sortType) Compare two expressions where one of them is NULL.static DefaultNullOrderingvalueOf(int ordinal) Returns default ordering of NULL values for the specified ordinal number.static DefaultNullOrderingReturns the enum constant of this class with the specified name.static DefaultNullOrdering[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
LOW
NULL values are considered as smaller than other values during sorting. -
HIGH
NULL values are considered as larger than other values during sorting. -
FIRST
NULL values are sorted before other values, no matter if ascending or descending order is used. -
LAST
NULL values are sorted after other values, no matter if ascending or descending order is used.
-
-
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
-
valueOf
Returns default ordering of NULL values for the specified ordinal number.- Parameters:
ordinal- ordinal number- Returns:
- default ordering of NULL values for the specified ordinal number
- See Also:
-
addExplicitNullOrdering
public int addExplicitNullOrdering(int sortType) Returns a sort type bit mask withSortOrder.NULLS_FIRSTorSortOrder.NULLS_LASTexplicitly set- Parameters:
sortType- sort type bit mask- Returns:
- bit mask with
SortOrder.NULLS_FIRSTorSortOrder.NULLS_LASTexplicitly set
-
compareNull
public int compareNull(boolean aNull, int sortType) Compare two expressions where one of them is NULL.- Parameters:
aNull- whether the first expression is nullsortType- the sort bit mask to use- Returns:
- the result of the comparison (-1 meaning the first expression should appear before the second, 0 if they are equal)
-