public interface OracleJsonBinary extends OracleJsonValue
OracleJsonValue.OracleJsonTypeFALSE, NULL, TRUE| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object obj)
Compares the specified object with this
OracleJsonBinary. |
byte[] |
getBytes()
Returns this binary value as a byte array.
|
RAW |
getRAW()
Returns this binary value as a
oracle.sql.RAW |
String |
getString()
Returns this binary value as a base-16 encoded string.
|
int |
hashCode()
The hashCode of this binary value.
|
boolean |
isId()
Returns true if this binary value is annotated as an identifier
|
asJsonArray, asJsonBinary, asJsonDate, asJsonDecimal, asJsonDouble, asJsonFloat, asJsonIntervalDS, asJsonIntervalYM, asJsonNumber, asJsonObject, asJsonString, asJsonTimestamp, asJsonTimestampTZ, getOracleJsonType, toString, wrapbyte[] getBytes()
RAW getRAW()
oracle.sql.RAWString getString()
boolean isId()
int hashCode()
java.util.Arrays.hashCode(getBytes()).boolean equals(Object obj)
OracleJsonBinary. Returns
true if and only if the other object is an instance of
OracleJsonBinary and the result of calling
java.util.Arrays.equals(this.getBytes() , (OracleJsonBinary)obj.getBytes())
returns true.