Uses of Class
com.mckoi.util.BigNumber
-
Packages that use BigNumber Package Description com.mckoi.database The core database classes for Mckoi.com.mckoi.database.global This package includes database constants such as Types.com.mckoi.database.jdbc The JDBC interface to Mckoi.com.mckoi.util Miscellaneous utility classes. -
-
Uses of BigNumber in com.mckoi.database
Fields in com.mckoi.database declared as BigNumber Modifier and Type Field Description private static BigNumber
Caster. maxBigNumByte
The maximum positive byte value as a BigNumber.private static BigNumber
Caster. maxBigNumDouble
The maximum positive double value as a BigNumber.private static BigNumber
Caster. maxBigNumFloat
The maximum positive float value as a BigNumber.private static BigNumber
Caster. maxBigNumInt
The maximum positive integer value as a BigNumber.private static BigNumber
Caster. maxBigNumLong
The maximum positive long value as a BigNumber.private static BigNumber
Caster. maxBigNumShort
The maximum positive short value as a BigNumber.private static BigNumber
Caster. minBigNumByte
The maximum positive byte value as a BigNumber.private static BigNumber
Caster. minBigNumFloat
The minimum positive float value as a BigNumber.private static BigNumber
Caster. minBigNumInt
The maximum positive integer value as a BigNumber.private static BigNumber
Caster. minBigNumLong
The maximum positive long value as a BigNumber.private static BigNumber
Caster. minBigNumShort
The maximum positive short value as a BigNumber.private static BigNumber
GTSQLTypeInfoDataSource. TYPE_NULLABLE
Constant for type_nullable types.Methods in com.mckoi.database that return BigNumber Modifier and Type Method Description private BigNumber
DataCellSerialization. createBigNumber(byte[] buf, int scale, byte state)
Creates a BigNumber object used to store a numeric value in the database.BigNumber
TObject. toBigNumber()
Returns the BigNumber of this object if this object is a numeric type.Methods in com.mckoi.database with parameters of type BigNumber Modifier and Type Method Description static TObject
TObject. bigNumberVal(BigNumber val)
Returns a TObject of numeric type that represents the given BigNumber value.private static java.lang.String
Transaction. makeUniqueConstraintName(java.lang.String name, BigNumber unique_id)
Convenience, generates a unique constraint name. -
Uses of BigNumber in com.mckoi.database.global
Fields in com.mckoi.database.global declared as BigNumber Modifier and Type Field Description private static BigNumber
CastHelper. BD_ONE
private static BigNumber
CastHelper. BD_ZERO
A couple of standard BigNumber statics.Methods in com.mckoi.database.global that return BigNumber Modifier and Type Method Description private static BigNumber
CastHelper. toBigNumber(java.lang.String str)
Converts the given string to a BigNumber. -
Uses of BigNumber in com.mckoi.database.jdbc
Fields in com.mckoi.database.jdbc declared as BigNumber Modifier and Type Field Description private static BigNumber
MResultSet. BD_ZERO
BigNumber for 0.Methods in com.mckoi.database.jdbc that return BigNumber Modifier and Type Method Description private BigNumber
MResultSet. getBigNumber(int columnIndex)
-
Uses of BigNumber in com.mckoi.util
Fields in com.mckoi.util declared as BigNumber Modifier and Type Field Description static BigNumber
BigNumber. BIG_NUMBER_ONE
static BigNumber
BigNumber. BIG_NUMBER_ZERO
Statics for 0 and 1.static BigNumber
BigNumber. NaN
static BigNumber
BigNumber. NEGATIVE_INFINITY
Statics for negative infinity, positive infinity and NaN.static BigNumber
BigNumber. POSITIVE_INFINITY
Methods in com.mckoi.util that return BigNumber Modifier and Type Method Description BigNumber
BigNumber. abs()
BigNumber
BigNumber. add(BigNumber number)
BigNumber
BigNumber. bitWiseOr(BigNumber number)
BigNumber
BigNumber. divide(BigNumber number)
static BigNumber
BigNumber. fromBigDecimal(java.math.BigDecimal val)
Creates a BigNumber from a BigDecimal.static BigNumber
BigNumber. fromData(byte[] buf, int scale, byte state)
Creates a BigNumber from the given data.static BigNumber
BigNumber. fromDouble(double value)
Creates a BigNumber from a double.static BigNumber
BigNumber. fromFloat(float value)
Creates a BigNumber from a float.static BigNumber
BigNumber. fromInt(int value)
Creates a BigNumber from an int.static BigNumber
BigNumber. fromLong(long value)
Creates a BigNumber from a long.static BigNumber
BigNumber. fromString(java.lang.String str)
Creates a BigNumber from a string.BigNumber
BigNumber. multiply(BigNumber number)
BigNumber
BigNumber. setScale(int d, int round_enum)
BigNumber
BigNumber. sqrt()
BigNumber
BigNumber. subtract(BigNumber number)
Methods in com.mckoi.util with parameters of type BigNumber Modifier and Type Method Description BigNumber
BigNumber. add(BigNumber number)
BigNumber
BigNumber. bitWiseOr(BigNumber number)
int
BigNumber. compareTo(BigNumber number)
Compares this BigNumber with the given BigNumber.BigNumber
BigNumber. divide(BigNumber number)
BigNumber
BigNumber. multiply(BigNumber number)
BigNumber
BigNumber. subtract(BigNumber number)
-