public interface OracleJsonBinary extends OracleJsonValue
OracleJsonValue.OracleJsonTypeFALSE, NULL, TRUE| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.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 |
java.lang.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, asJsonVector, getOracleJsonType, toString, wrapbyte[] getBytes()
RAW getRAW()
oracle.sql.RAWjava.lang.String getString()
boolean isId()
int hashCode()
java.util.Arrays.hashCode(getBytes()).hashCode in class java.lang.Objectboolean equals(java.lang.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.equals in class java.lang.Objectobj - the object to be compared for equalityOracleJsonBinary.