Package oracle.kv.table
Interface BooleanValue
- 
- All Superinterfaces:
 Comparable<FieldValue>,FieldValue
public interface BooleanValue extends FieldValue
BooleanValue extendsFieldValueto represent a simple boolean value.- Since:
 - 3.0
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BooleanValueclone()Create a deep copy of this object.booleanget()Get the boolean value of this object.- 
Methods inherited from interface java.lang.Comparable
compareTo 
- 
Methods inherited from interface oracle.kv.table.FieldValue
asArray, asBinary, asBoolean, asDouble, asEnum, asFixedBinary, asFloat, asIndexKey, asInteger, asLong, asMap, asNumber, asPrimaryKey, asRecord, asRow, asString, asTimestamp, getDefinition, getType, isArray, isAtomic, isBinary, isBoolean, isComplex, isDouble, isEMPTY, isEnum, isFixedBinary, isFloat, isIndexKey, isInteger, isJsonNull, isLong, isMap, isNull, isNumber, isNumeric, isPrimaryKey, isRecord, isRow, isString, isTimestamp, toJsonString 
 - 
 
 - 
 
- 
- 
Method Detail
- 
get
boolean get()
Get the boolean value of this object.- Returns:
 - the boolean value
 
 
- 
clone
BooleanValue clone()
Create a deep copy of this object.- Specified by:
 clonein interfaceFieldValue- Returns:
 - a deep copy of this object
 
 
 - 
 
 -