Package oracle.sql.json
Interface OracleJsonFloat
-
- All Superinterfaces:
OracleJsonNumber
,OracleJsonValue
public interface OracleJsonFloat extends OracleJsonValue, OracleJsonNumber
A 32-bit, single-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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
equals(Object obj)
Compares the specified object with thisOracleJsonFloat
.BINARY_FLOAT
getFLOAT()
Returns this value as aoracle.sql.BINARY_DOUBLE
int
hashCode()
Returns a hash code equal tojava.lang.Float.hashCode(floatValue())
.-
Methods inherited from interface oracle.sql.json.OracleJsonNumber
bigDecimalValue, bigIntegerValue, bigIntegerValueExact, doubleValue, floatValue, intValue, intValueExact, isIntegral, longValue, longValueExact
-
Methods inherited from interface oracle.sql.json.OracleJsonValue
asJsonArray, asJsonBinary, asJsonDate, asJsonDecimal, asJsonDouble, asJsonFloat, asJsonIntervalDS, asJsonIntervalYM, asJsonNumber, asJsonObject, asJsonString, asJsonTimestamp, asJsonTimestampTZ, getOracleJsonType, toString, wrap
-
-
-
-
Method Detail
-
getFLOAT
BINARY_FLOAT getFLOAT()
Returns this value as aoracle.sql.BINARY_DOUBLE
- Returns:
- the value
-
hashCode
int hashCode()
Returns a hash code equal tojava.lang.Float.hashCode(floatValue())
.
-
equals
boolean equals(Object obj)
Compares the specified object with thisOracleJsonFloat
. Returns true if and only if the other object is an instance ofOracleJsonFloat
and thefloatValue()
values are equal.
-
-