Package com.graphdbapi.values.storable
Class CypherBoolean
- java.lang.Object
-
- com.graphdbapi.values.CypherAny
-
- com.graphdbapi.values.storable.CypherValue
-
- com.graphdbapi.values.storable.CypherBoolean
-
public abstract class CypherBoolean extends CypherValue
Driver传输Boolean类型的对象。
-
-
Field Summary
Fields Modifier and Type Field Description static CypherBoolean
FALSE
Driver传输Boolean.FALSE值的默认对象。static CypherBoolean
TRUE
Driver传输Boolean.TRUE值的默认对象。
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract boolean
CypherBoolean()
获取当前对象的boolean值。-
Methods inherited from class com.graphdbapi.values.storable.CypherValue
asObjectCopy
-
-
-
-
Field Detail
-
TRUE
public static final CypherBoolean TRUE
Driver传输Boolean.TRUE值的默认对象。
-
FALSE
public static final CypherBoolean FALSE
Driver传输Boolean.FALSE值的默认对象。
-
-