public static enum CountOptions.Mode extends Enum<CountOptions.Mode>
| Enum Constant and Description |
|---|
COUNT_NON_NULL
Count all non-null values.
|
COUNT_NULL
Count all null values.
|
| Modifier and Type | Field and Description |
|---|---|
int |
value |
| Modifier and Type | Method and Description |
|---|---|
CountOptions.Mode |
intern() |
String |
toString() |
static CountOptions.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CountOptions.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CountOptions.Mode COUNT_NON_NULL
public static final CountOptions.Mode COUNT_NULL
public static CountOptions.Mode[] values()
for (CountOptions.Mode c : CountOptions.Mode.values()) System.out.println(c);
public static CountOptions.Mode 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.Mode intern()
public String toString()
toString in class Enum<CountOptions.Mode>Copyright © 2021. All rights reserved.