public enum NullValue extends Enum<NullValue>
| Modifier and Type | Method and Description |
|---|---|
static NullValue |
getNullValue(String value)
Obtain a NullValue for the given name by
value |
static NullValue |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NullValue[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NullValue EXCEPTION
public static final NullValue DEFAULT
public static final NullValue NONE
public static NullValue[] values()
for (NullValue c : NullValue.values()) System.out.println(c);
public static NullValue 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 nullCopyright © 2019. All rights reserved.