Package openllet.core.utils
Class Bool
- java.lang.Object
-
- openllet.core.utils.Bool
-
public class Bool extends java.lang.ObjectImplementation of boolean that can be in unknow state : TRUE/FALSE/UNKNOWN
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Booland(Bool other)static Boolcreate(boolean value)booleanisFalse()booleanisKnown()booleanisTrue()booleanisUnknown()Boolnot()Boolor(Bool other)java.lang.StringtoString()
-
-
-
Method Detail
-
create
public static Bool create(boolean value)
-
not
public Bool not()
-
isTrue
public boolean isTrue()
-
isFalse
public boolean isFalse()
-
isUnknown
public boolean isUnknown()
-
isKnown
public boolean isKnown()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-