| Enum Constant and Description |
|---|
falsifiable |
unknown |
valid |
| Modifier and Type | Method and Description |
|---|---|
static Answer |
getAnswer(java.lang.String answer) |
java.lang.String |
toString() |
static Answer |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Answer[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Answer valid
public static final Answer falsifiable
public static final Answer unknown
public static Answer[] values()
for (Answer c : Answer.values()) System.out.println(c);
public static Answer 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 static Answer getAnswer(java.lang.String answer)
public java.lang.String toString()
toString in class java.lang.Enum<Answer>