public enum BooleanAtom extends java.lang.Enum<BooleanAtom> implements Expr
| Modifier and Type | Method and Description |
|---|---|
void |
ast(java.lang.StringBuilder builder,
java.lang.String prefix,
boolean isTail) |
Truth |
compute() |
static BooleanAtom |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BooleanAtom[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BooleanAtom TRUE
public static final BooleanAtom FALSE
public static BooleanAtom[] values()
for (BooleanAtom c : BooleanAtom.values()) System.out.println(c);
public static BooleanAtom 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