Package oracle.kv.table
Interface BinaryValue
- All Superinterfaces:
- Comparable<FieldValue>,- FieldValue
BinaryValue extends 
FieldValue to represent a byte array
 value.- Since:
- 3.0
- 
Method SummaryModifier and TypeMethodDescriptionclone()Create a deep copy of this object.intcompareTo(FieldValue otherValue) Returns 0 if the two values are equal in terms of length and byte content, otherwise it returns -1.byte[]get()Returns the byte array value.toString()Returns a String representation of the value using a Base64 encoding.Methods inherited from interface oracle.kv.table.FieldValueasArray, 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 Details- 
getbyte[] get()Returns the byte array value.- Returns:
- the byte array value
 
- 
compareToReturns 0 if the two values are equal in terms of length and byte content, otherwise it returns -1.- Specified by:
- compareToin interface- Comparable<FieldValue>
- Returns:
- 0 if the values are equal, -1 otherwise
 
- 
cloneBinaryValue clone()Create a deep copy of this object.- Specified by:
- clonein interface- FieldValue
- Returns:
- a deep copy of this object
 
- 
toStringString toString()Returns a String representation of the value using a Base64 encoding.
 
-