public enum NullValue extends Enum<NullValue>
Modifier and Type | Method and Description |
---|---|
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 NONE
public static final NullValue EXCEPTION
public static final NullValue DEFAULT
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 © 2005–1970 Apache Software Foundation. All rights reserved.