public enum TriBoolean extends Enum<TriBoolean>
| Modifier and Type | Method and Description |
|---|---|
TriBoolean |
and(boolean other)
and
|
TriBoolean |
and(TriBoolean other)
and
|
TriBoolean |
andNot(boolean other)
andNot
|
TriBoolean |
andNot(TriBoolean other)
andNot
|
static TriBoolean |
fromBoolean(boolean value)
fromBoolean
|
boolean |
isCertainlyFalse()
isCertainlyFalse
|
boolean |
isCertainlyTrue()
isCertainlyTrue
|
boolean |
isPossiblyFalse()
isPossiblyFalse
|
boolean |
isPossiblyTrue()
isPossiblyTrue
|
TriBoolean |
negated()
negated
|
TriBoolean |
notAnd(boolean other)
notAnd
|
TriBoolean |
notAnd(TriBoolean other)
notAnd
|
TriBoolean |
notOr(boolean other)
notOr
|
TriBoolean |
notOr(TriBoolean other)
notOr
|
TriBoolean |
or(boolean other)
or
|
TriBoolean |
or(TriBoolean other)
or
|
TriBoolean |
orNot(boolean other)
orNot
|
TriBoolean |
orNot(TriBoolean other)
orNot
|
static TriBoolean |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TriBoolean[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TriBoolean True
public static final TriBoolean False
public static final TriBoolean Maybe
public static TriBoolean[] values()
for (TriBoolean c : TriBoolean.values()) System.out.println(c);
public static TriBoolean 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 static TriBoolean fromBoolean(boolean value)
fromBoolean
value - a boolean.TriBoolean object.public TriBoolean and(TriBoolean other)
and
other - a TriBoolean object.TriBoolean object.public TriBoolean and(boolean other)
and
other - a boolean.TriBoolean object.public TriBoolean or(TriBoolean other)
or
other - a TriBoolean object.TriBoolean object.public TriBoolean or(boolean other)
or
other - a boolean.TriBoolean object.public TriBoolean negated()
negated
TriBoolean object.public TriBoolean andNot(TriBoolean other)
andNot
other - a TriBoolean object.TriBoolean object.public TriBoolean andNot(boolean other)
andNot
other - a boolean.TriBoolean object.public TriBoolean orNot(TriBoolean other)
orNot
other - a TriBoolean object.TriBoolean object.public TriBoolean orNot(boolean other)
orNot
other - a boolean.TriBoolean object.public TriBoolean notAnd(TriBoolean other)
notAnd
other - a TriBoolean object.TriBoolean object.public TriBoolean notAnd(boolean other)
notAnd
other - a boolean.TriBoolean object.public TriBoolean notOr(TriBoolean other)
notOr
other - a TriBoolean object.TriBoolean object.public TriBoolean notOr(boolean other)
notOr
other - a boolean.TriBoolean object.public boolean isPossiblyTrue()
isPossiblyTrue
public boolean isPossiblyFalse()
isPossiblyFalse
public boolean isCertainlyTrue()
isCertainlyTrue
public boolean isCertainlyFalse()
isCertainlyFalse
Copyright © 2010–2017 EvoSuite. All rights reserved.