protected static enum OptionalBoolean.State extends Enum<OptionalBoolean.State>
OptionalBoolean
.Enum Constant and Description |
---|
CONFLICTING |
FALSE |
TRUE |
UNSET |
Modifier and Type | Method and Description |
---|---|
static OptionalBoolean.State |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptionalBoolean.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptionalBoolean.State UNSET
public static final OptionalBoolean.State FALSE
public static final OptionalBoolean.State TRUE
public static final OptionalBoolean.State CONFLICTING
public static OptionalBoolean.State[] values()
for (OptionalBoolean.State c : OptionalBoolean.State.values()) System.out.println(c);
public static OptionalBoolean.State 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 © 2014–2021 The Apache Software Foundation. All rights reserved.