Package oracle.nosql.driver.values
Class BooleanValue
- java.lang.Object
-
- oracle.nosql.driver.values.FieldValue
-
- oracle.nosql.driver.values.BooleanValue
-
- All Implemented Interfaces:
Comparable<FieldValue>
public abstract class BooleanValue extends FieldValue
AFieldValueinstance representing a boolean value. Boolean values are singleton final instances and never constructed.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class oracle.nosql.driver.values.FieldValue
FieldValue.Type
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description intcompareTo(FieldValue other)booleanequals(Object other)static BooleanValuefalseInstance()Returns a singleton instance representing a false BooleanValuestatic BooleanValuegetInstance(boolean value)Returns a singleton instance representing the boolean value provided.StringgetString()Returns a String value for the field.FieldValue.TypegetType()Returns the type of the objectabstract booleangetValue()Returns the boolean value of the fieldinthashCode()longsizeof()static BooleanValuetrueInstance()Returns a singleton instance representing a true BooleanValue-
Methods inherited from class oracle.nosql.driver.values.FieldValue
asArray, asBinary, asBoolean, asDouble, asInteger, asJsonNull, asLong, asMap, asNull, asNumber, asString, asTimestamp, castAsDouble, createFromJson, createFromJson, createFromJson, getBinary, getBoolean, getDouble, getInt, getLong, getNumber, getSerializedSize, getTimestamp, isAnyNull, isArray, isAtomic, isBinary, isBoolean, isDouble, isInteger, isJsonNull, isLong, isMap, isNull, isNumber, isNumeric, isString, isTimestamp, toJson, toJson, toString
-
-
-
-
Method Detail
-
trueInstance
public static BooleanValue trueInstance()
Returns a singleton instance representing a true BooleanValue- Returns:
- the value
-
falseInstance
public static BooleanValue falseInstance()
Returns a singleton instance representing a false BooleanValue- Returns:
- the value
-
getInstance
public static BooleanValue getInstance(boolean value)
Returns a singleton instance representing the boolean value provided.- Parameters:
value- the value- Returns:
- the value
-
getValue
public abstract boolean getValue()
Returns the boolean value of the field- Returns:
- the value
-
getString
public String getString()
Description copied from class:FieldValueReturns a String value for the field. The String value cannot be created for MapValue, ArrayValue and BinaryValue. String values that are coerced use Java rules for representation.- Overrides:
getStringin classFieldValue- Returns:
- a String value
-
getType
public FieldValue.Type getType()
Description copied from class:FieldValueReturns the type of the object- Specified by:
getTypein classFieldValue- Returns:
- the type
-
compareTo
public int compareTo(FieldValue other)
-
sizeof
public long sizeof()
-
-