public enum Satisfiability extends Enum<Satisfiability>
| Modifier and Type | Method and Description |
|---|---|
Boolean |
asBoolean() |
static Satisfiability |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Satisfiability[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Satisfiability UNKNOWN
public static final Satisfiability FALSE
public static final Satisfiability TRUE
public static Satisfiability[] values()
for (Satisfiability c : Satisfiability.values()) System.out.println(c);
public static Satisfiability 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 nullpublic Boolean asBoolean()
Copyright © 2014. All Rights Reserved.