public interface OracleJsonVector extends OracleJsonValue
OracleJsonValue.OracleJsonType
FALSE, NULL, TRUE
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj)
Compares the specified object with this
OracleJsonVector . |
byte[] |
getByteArray()
Converts this vector into an array of 8-bit integers.
|
double[] |
getDoubleArray()
Returns this vector as an array of doubles.
|
float[] |
getFloatArray()
Converts this vector into an array of floats.
|
VECTOR |
getVECTOR()
Returns this value as a
VECTOR |
int |
hashCode()
Returns a hash code for the vector.
|
asJsonArray, asJsonBinary, asJsonDate, asJsonDecimal, asJsonDouble, asJsonFloat, asJsonIntervalDS, asJsonIntervalYM, asJsonNumber, asJsonObject, asJsonString, asJsonTimestamp, asJsonTimestampTZ, asJsonVector, getOracleJsonType, toString, wrap
double[] getDoubleArray()
OracleJsonException
- if an error occurs converting the vector to an
array of doublesfloat[] getFloatArray()
This method may perform lossy conversions as specified in the "SQL to Java
Conversions" section of the JavaDoc for OracleType.VECTOR
OracleJsonException
- if an error occurs converting the vector to an
array of floatsbyte[] getByteArray()
This method may perform lossy conversions as specified in the "SQL to Java
Conversions" section of the JavaDoc for OracleType.VECTOR
OracleJsonException
- if an error occurs converting the vector to an
array of integersint hashCode()
hashCode
in class java.lang.Object
boolean equals(java.lang.Object obj)
OracleJsonVector
. Returns
true if and only if the other object is an instance of
OracleJsonVector
that is equal to this one.equals
in class java.lang.Object
obj
- the object to be compared for equalityOracleJsonVector
.