public interface OracleJsonVector extends OracleJsonValue
OracleJsonValue.OracleJsonTypeFALSE, 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, wrapdouble[] 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.Objectboolean 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.Objectobj - the object to be compared for equalityOracleJsonVector.