Uses of Class
org.ojalgo.scalar.ExactDecimal
-
Packages that use ExactDecimal Package Description org.ojalgo.scalar -
-
Uses of ExactDecimal in org.ojalgo.scalar
Classes in org.ojalgo.scalar with type parameters of type ExactDecimal Modifier and Type Class Description class
ExactDecimal<S extends ExactDecimal<S>>
To help implement exact decimal numbers with a fixed number of decimal places (fixed scale).static interface
ExactDecimal.Factory<S extends ExactDecimal<S>>
Subclasses of ExactDecimal in org.ojalgo.scalar Modifier and Type Class Description class
Amount
(currency) amount as in "amount = price * quatity"class
Money
An exampleExactDecimal
implementation corresponding to the SQL data type MONEY or DECIMAL(19,4).class
Price
price or exchange rate as in "amount = price * quatity" or "amount = rate * amount"class
Quantity
quantity as in "amount = price * quatity"Methods in org.ojalgo.scalar with parameters of type ExactDecimal Modifier and Type Method Description long
ExactDecimal.Descriptor. add(ExactDecimal<?> arg1, ExactDecimal<?> arg2)
long
ExactDecimal.Descriptor. divide(ExactDecimal<?> arg1, ExactDecimal<?> arg2)
long
ExactDecimal.Descriptor. multiply(ExactDecimal<?> arg1, ExactDecimal<?> arg2)
long
ExactDecimal.Descriptor. subtract(ExactDecimal<?> arg1, ExactDecimal<?> arg2)
-