public enum BooleanChoice extends java.lang.Enum<BooleanChoice> implements IChoice
Modifier and Type | Method and Description |
---|---|
java.lang.String |
description() |
java.lang.String |
toString() |
static BooleanChoice |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BooleanChoice[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanChoice TRUE
public static final BooleanChoice FALSE
public static BooleanChoice[] values()
for (BooleanChoice c : BooleanChoice.values()) System.out.println(c);
public static BooleanChoice 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 nullpublic java.lang.String description()
description
in interface IChoice
public java.lang.String toString()
toString
in class java.lang.Enum<BooleanChoice>