public static enum CountOptions.CountMode extends Enum<CountOptions.CountMode>
| Enum Constant and Description |
|---|
ALL
Count both non-null and null values.
|
ONLY_NULL
Count only null values.
|
ONLY_VALID
Count only non-null values.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
CountOptions.CountMode |
intern() |
String |
toString() |
static CountOptions.CountMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountOptions.CountMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountOptions.CountMode ONLY_VALID
public static final CountOptions.CountMode ONLY_NULL
public static final CountOptions.CountMode ALL
public static CountOptions.CountMode[] values()
for (CountOptions.CountMode c : CountOptions.CountMode.values()) System.out.println(c);
public static CountOptions.CountMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic CountOptions.CountMode intern()
public String toString()
toString in class Enum<CountOptions.CountMode>Copyright © 2022. All rights reserved.