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