Package oracle.sql.json
Interface OracleJsonDouble
- All Superinterfaces:
OracleJsonNumber,OracleJsonValue
A 64-bit, double-precision floating-point number.
-
Nested Class Summary
Nested classes/interfaces inherited from interface oracle.sql.json.OracleJsonValue
OracleJsonValue.OracleJsonType -
Field Summary
Fields inherited from interface oracle.sql.json.OracleJsonValue
FALSE, NULL, TRUE -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares the specified object with thisOracleJsonDouble.Returns this value as aoracle.sql.BINARY_DOUBLEinthashCode()Returns a hash code equal tojava.lang.Double.hashCode(doubleValue()).Methods inherited from interface oracle.sql.json.OracleJsonNumber
bigDecimalValue, bigIntegerValue, bigIntegerValueExact, doubleValue, floatValue, intValue, intValueExact, isIntegral, longValue, longValueExactMethods inherited from interface oracle.sql.json.OracleJsonValue
asJsonArray, asJsonBinary, asJsonDate, asJsonDecimal, asJsonDouble, asJsonFloat, asJsonIntervalDS, asJsonIntervalYM, asJsonNumber, asJsonObject, asJsonString, asJsonTimestamp, asJsonTimestampTZ, asJsonVector, getOracleJsonType, toString, wrap
-
Method Details
-
getDOUBLE
BINARY_DOUBLE getDOUBLE()Returns this value as aoracle.sql.BINARY_DOUBLE- Returns:
- the value
-
hashCode
int hashCode()Returns a hash code equal tojava.lang.Double.hashCode(doubleValue()). -
equals
Compares the specified object with thisOracleJsonDouble. Returns true if and only if the other object is an instance ofOracleJsonDoubleand thedoubleValue()values are equal.
-