public enum SymbolicBooleanConstraint extends Enum<SymbolicBooleanConstraint>
| Modifier and Type | Method and Description |
|---|---|
SymbolicBooleanConstraint |
negate() |
SymbolicBooleanConstraint |
union(SymbolicBooleanConstraint other) |
static SymbolicBooleanConstraint |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SymbolicBooleanConstraint[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SymbolicBooleanConstraint FALSE
public static final SymbolicBooleanConstraint TRUE
public static final SymbolicBooleanConstraint UNKNOWN
public static SymbolicBooleanConstraint[] values()
for (SymbolicBooleanConstraint c : SymbolicBooleanConstraint.values()) System.out.println(c);
public static SymbolicBooleanConstraint 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 SymbolicBooleanConstraint negate()
public SymbolicBooleanConstraint union(@Nullable SymbolicBooleanConstraint other)
Copyright © 2012–2015 SonarSource. All rights reserved.