public static enum Sort.NullHandling extends java.lang.Enum<Sort.NullHandling>
Sort.Order expressions.| 枚举常量和说明 |
|---|
NATIVE
Lets the data store decide what to do with nulls.
|
NULLS_FIRST
A hint to the used data store to order entries with null values before non null entries.
|
NULLS_LAST
A hint to the used data store to order entries with null values after non null entries.
|
| 限定符和类型 | 方法和说明 |
|---|---|
static Sort.NullHandling |
valueOf(java.lang.String name)
返回带有指定名称的该类型的枚举常量。
|
static Sort.NullHandling[] |
values()
按照声明该枚举类型的常量的顺序, 返回
包含这些常量的数组。
|
public static final Sort.NullHandling NATIVE
public static final Sort.NullHandling NULLS_FIRST
public static final Sort.NullHandling NULLS_LAST
public static Sort.NullHandling[] values()
for (Sort.NullHandling c : Sort.NullHandling.values()) System.out.println(c);
public static Sort.NullHandling valueOf(java.lang.String name)
name - 要返回的枚举常量的名称。java.lang.IllegalArgumentException - 如果该枚举类型没有带有指定名称的常量java.lang.NullPointerException - 如果参数为空值Copyright © 2023. All Rights Reserved.