Uses of Class
oracle.sql.NUMBER
Packages that use NUMBER
Package
Description
Beginning in Oracle9i, the Oracle extensions to JDBC are captured
in the package
oracle.jdbc.A package of classes that represent java SQL types and Oracle specific
SQL types.
The API for JSON type in Oracle Database.
-
Uses of NUMBER in oracle.jdbc
Methods in oracle.jdbc that return NUMBERModifier and TypeMethodDescriptionOracleConnection.createNUMBER(boolean value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(byte value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(double value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(float value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(int value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(long value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(short value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(String value, int scale) Creates a new NUMBER that has the given value and scale.OracleConnection.createNUMBER(BigDecimal value) Creates a new NUMBER that has the given value.OracleConnection.createNUMBER(BigInteger value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(boolean value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(byte value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(double value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(float value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(int value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(long value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(short value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(String value, int scale) Creates a new NUMBER that has the given value and scale.OracleConnectionWrapper.createNUMBER(BigDecimal value) Creates a new NUMBER that has the given value.OracleConnectionWrapper.createNUMBER(BigInteger value) Creates a new NUMBER that has the given value.OracleCallableStatement.getNUMBER(int parameterIndex) Retrieves data into anoracle.sql.NUMBERobject.OracleResultSet.getNUMBER(int columnIndex) Oracle extension.Oracle extension.Methods in oracle.jdbc with parameters of type NUMBERModifier and TypeMethodDescriptionvoidSets the designated parameter to anoracle.sql.NUMBERvalue.voidBinds the designated parameter to aoracle.sql.NUMBERvalue.voidOraclePreparedStatement.setNUMBERAtName(String parameterName, NUMBER value) Sets the designated parameter to anoracle.sql.NUMBERvalue.voidOracleResultSet.updateNUMBER(int columnIndex, NUMBER value) Oracle extension.voidOracleResultSet.updateNUMBER(String columnName, NUMBER value) Oracle extension. -
Uses of NUMBER in oracle.sql
Methods in oracle.sql that return NUMBERModifier and TypeMethodDescriptionNUMBER.abs()Returns a new NUMBER object initialized to the absolute value of NUMBER.NUMBER.acos()Returns a new NUMBER object initialized to the arc cosine value of NUMBER.Returns a new NUMBER object initialized to the value of the addition of the NUMBER value and n.NUMBER.asin()Returns a new NUMBER object initialized to the arc sine value of NUMBER.NUMBER.atan()Returns a new NUMBER object initialized to the arc tangent value of NUMBER.Returns a new NUMBER object initialized to the value of atan2(NUMBER/x).NUMBER.ceil()Returns a new NUMBER object initialized to the ceiling of NUMBER value.NUMBER.cos()Returns a new NUMBER object initialized to the cosine value of NUMBER.NUMBER.cosh()Returns a new NUMBER object initialized to the hyperbolic cosine value of NUMBER.NUMBER.decrement()Returns a new NUMBER object initialized to the NUMBER value decremented by 1.DATE.diffInMonths(DATE date) Calculates the difference between two dates in months.Returns a new NUMBER object initialized to the division of NUMBER value by n.static NUMBERNUMBER.e()Returns a new NUMBER object initialized to the value of e.NUMBER.exp()Returns a new NUMBER object initialized to the value of e raised to NUMBER value.NUMBER.floatingPointRound(int precision) Returns a new NUMBER object initialized to Number rounded to precision significant decimal digits.NUMBER.floor()Returns a new NUMBER object initialized to the floor of NUMBER value.static NUMBERNUMBER.formattedTextToNumber(String num, String fmt, String lang) Returns a NUMBER converted from Num controlled by the format fmt.NUMBER.increment()Returns a new NUMBER object initialized to the NUMBER value incremented by 1.NUMBER.ln()Returns a new NUMBER object initialized to the natural logarithm of the NUMBER value.static NUMBERNUMBER.ln10()Returns a new NUMBER object initialized to the value of ln(10).Returns a new NUMBER object initialized to the logarithm to the base base of the NUMBER value.Returns a new NUMBER object initialized to the remainder of the division of NUMBER/n.Returns a new NUMBER object initialized to product of NUMBER and n.NUMBER.negate()Returns a new NUMBER object initialized to the negated NUMBER value.static NUMBERNUMBER.negInf()Returns a new NUMBER object initialized to negative infinity.static NUMBERNUMBER.pi()Returns a new NUMBER object initialized to the value of pi.static NUMBERNUMBER.posInf()Returns a new NUMBER object initialized to positive infinity.NUMBER.pow(int exp) Returns a new NUMBER object initialized to NUMBER value raised to the exp power.Returns a new NUMBER object initialized to the value of NUMBER value raised to the exp power.NUMBER.round(int decimal_place) Returns a new NUMBER object initialized to the NUMBER value rounded to specified decimal place decimal_place.NUMBER.scale(int left, int right, boolean[] big) Returns a new NUMBER object initialized to the value determined by the rounding performed based on the right parameter below.NUMBER.shift(int digits) Returns a new NUMBER object initialized the NUMBER value shifted digits decimal places.NUMBER.sin()Returns a new NUMBER object initialized to the sine of the NUMBER.NUMBER.sinh()Returns a new NUMBER object initialized to the hyperbolic sine of NUMBER.NUMBER.sqroot()Returns a new NUMBER object initialized to the square root of NUMBER.Returns a new NUMBER object initialized to the difference of NUMBER and n.NUMBER.tan()Returns a new NUMBER object initialized to the tangent of NUMBER.NUMBER.tanh()Returns a new NUMBER object initialized to the hyperbolic tangent of Number.static NUMBERNUMBER.textToPrecisionNumber(String num, boolean precflag, int preclen, boolean scaleflag, int scalelen, String lang) Returns a NUMBER object initialized to the value in num as described below.DATE.toNumber()Converts date to an Oracle Number.NUMBER.truncate(int decimal_place) Returns a new NUMBER object initialized to the NUMBER value truncated to specified decimal place decimal_place.static NUMBERNUMBER.zero()Returns a new NUMBER object initialized to zero.Methods in oracle.sql with parameters of type NUMBERModifier and TypeMethodDescriptionReturns a new NUMBER object initialized to the value of the addition of the NUMBER value and n.Returns a new NUMBER object initialized to the value of atan2(NUMBER/x).intReturns -1 if NUMBER is less than n, 0 if NUMBER and n are equal (==), 1 if NUMBER is greater than n.Returns a new NUMBER object initialized to the division of NUMBER value by n.Returns a new NUMBER object initialized to the logarithm to the base base of the NUMBER value.Returns a new NUMBER object initialized to the remainder of the division of NUMBER/n.Returns a new NUMBER object initialized to product of NUMBER and n.static voidDATE.numberToJulianDays(NUMBER num, int[] julianDay, int[] julianSec) Converts an Oracle NUMBER to Julian days and secondsReturns a new NUMBER object initialized to the value of NUMBER value raised to the exp power.Returns a new NUMBER object initialized to the difference of NUMBER and n. -
Uses of NUMBER in oracle.sql.json
Methods in oracle.sql.json that return NUMBER