public static enum Protocol.NullHandlingStrategy extends Enum<Protocol.NullHandlingStrategy>
Enum Constant and Description |
---|
NULL_OMIT |
NULL_TREAT_EMPTY |
NULL_TREAT_LOWERCASENULL |
Modifier and Type | Method and Description |
---|---|
static Protocol.NullHandlingStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Protocol.NullHandlingStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Protocol.NullHandlingStrategy NULL_OMIT
public static final Protocol.NullHandlingStrategy NULL_TREAT_EMPTY
public static final Protocol.NullHandlingStrategy NULL_TREAT_LOWERCASENULL
public static Protocol.NullHandlingStrategy[] values()
for (Protocol.NullHandlingStrategy c : Protocol.NullHandlingStrategy.values()) System.out.println(c);
public static Protocol.NullHandlingStrategy 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 null