java.io.Serializable
, java.lang.Comparable<Constants.Bool>
, java.lang.constant.Constable
public static enum Constants.Bool extends java.lang.Enum<Constants.Bool>
Enum Constant | Description |
---|---|
FALSE |
|
TRUE |
|
UNSPECIFIED |
Modifier and Type | Method | Description |
---|---|---|
static Constants.Bool |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static Constants.Bool[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Constants.Bool UNSPECIFIED
public static final Constants.Bool TRUE
public static final Constants.Bool FALSE
public static Constants.Bool[] values()
for (Constants.Bool c : Constants.Bool.values()) System.out.println(c);
public static Constants.Bool valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null