public static enum CountOptions.mode extends Enum<CountOptions.mode>
| Enum Constant and Description |
|---|
COUNT_ALL |
COUNT_NULL |
| 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_ALL
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 © 2020. All rights reserved.