Interface OracleJsonFloat

All Superinterfaces:
OracleJsonNumber, OracleJsonValue

public interface OracleJsonFloat extends OracleJsonValue, OracleJsonNumber
A 32-bit, single-precision floating-point number.
  • Method Details

    • getFLOAT

      BINARY_FLOAT getFLOAT()
      Returns this value as a oracle.sql.BINARY_DOUBLE
      Returns:
      the value
    • hashCode

      int hashCode()
      Returns a hash code equal to java.lang.Float.hashCode(floatValue()).
      Overrides:
      hashCode in class Object
      Returns:
      the hash code
    • equals

      boolean equals(Object obj)
      Compares the specified object with this OracleJsonFloat. Returns true if and only if the other object is an instance of OracleJsonFloat and the floatValue() values are equal.
      Overrides:
      equals in class Object
      Parameters:
      obj - the object to be compared for equality
      Returns:
      true if the specified object is equal to this OracleJsonFloat.