Serialized Form
Package com.rubecula.units |
_Dimensions
Dimensions _Dimensions
- The Dimensions corresponding to this flattened unit.
_Scale
Rational _Scale
- The scale of this flattened unit.
_Dimension
int _Dimension
- Instance field to define the dimension of this unit,
according to values in the table defined above.
_System
SystemFlag _System
_Scale
Rational _Scale
_Offset
Rational _Offset
_PowerA
Rational _PowerA
_A
Measurable _A
_PowerB
Rational _PowerB
_B
Measurable _B
_Tables
java.util.Vector _Tables
- The table of other units systems.
_Name
UnitsName _Name
- The name by which this UnitsFoundation will be identified.
_Name
java.lang.String _Name
_System
SystemFlag _System
Package com.rubecula.math |
_Operations
AlphabeticalMap _Operations
- This is the table of operations supported by this mill (in addition to
base class). Keys are abbreviated operators; Entries are formal
definitions.
_Macros
StringMap _Macros
- This is the table of macro definitions, that is to say non-native
operations which are enabled using compounds of other operations.
Package com.rubecula.util |
strKey
java.lang.String strKey
- The resource-specifying key for this exception
nonLocalJunk
java.lang.String nonLocalJunk
- The non-localizable junk from the key provided
(characters from ":" to end inclusive, if any)
strClassMethod
java.lang.String strClassMethod
- A field which simply retains the value of the class and
method names concatenated together by ".".
This is private because it really doesn't make any sense
for anyone to mess with this.
_Recoverable
boolean _Recoverable
_Name
java.lang.String _Name
Package com.rubecula.jquantity |
_Value
double _Value
- The value of this approximation.
_Bound
double _Bound
- _Bound is the relative value of the estimate of the size of any error in
the value itself (according to the model).
_Model
int _Model
- _Model is the distribution model of possible errors in the value itself.
The size of the errors is controlled by _Bound.
serialVersionUID: -8742448824652078965l
_Identifier
java.lang.String _Identifier
_R
Value _R
- The Value instance representing the real part of this Complex. Must be
non-null.
_I
Value _I
- The Value instance representing the imaginary part of this Complex. May
be null.
_Polar
boolean _Polar
- Which side of the EL plane is the number defined on. True for the polar
(logarithmic) side, false for the cartesian (exponential) side.
_Branch
int _Branch
- If this Complex is defined on the polar (logarithmic) side, then this
integer represents which "branch" the number is defined on. Otherwise,
the branch is irrelevant (unless the number is cast to a polar value.
_Constant
boolean _Constant
- This instance field signifies if this instance of Complex has been
designated a constant.
_Constant
boolean _Constant
_Number
BaseNumber _Number
- The value of this JQuantity.
_Units
Measurable _Units
- The units of this JQuantity.
_Details
java.lang.String _Details
_Informational
boolean _Informational
_Properties
ConvenientProperties _Properties
_Failures
java.util.Set _Failures
- Set containing all current failures.
_Value
long _Value
- This is the value of this constant.
_AllOperations
AlphabeticalMap _AllOperations
- This is the table of all operations. Keys are abbreviated operators
(case-independent); Entries are formal definitions.
_DyadicOperations
AlphabeticalMap _DyadicOperations
- This is the table of dyadic operations. Keys are abbreviated operators
(case-independent); Entries are formal definitions.
_MonadicOperations
AlphabeticalMap _MonadicOperations
- This is the table of monadic operations. Keys are abbreviated operators
(case-independent); Entries are formal definitions.
_AnadicOperations
AlphabeticalMap _AnadicOperations
- This is the table of anadic operations. Keys are abbreviated operators
(case-independent); Entries are formal definitions.
_SpecialOperations
AlphabeticalMap _SpecialOperations
- This is the table of special operations. Keys are abbreviated operators
(case-independent); Entries are formal definitions.
_Name
java.lang.String _Name
- The identifier for this Mill.
_Memory
StringMap _Memory
- The user-definable memory for this mill.
Note that the keys for this store are case-dependent Strings.
_Identifier
java.lang.String _Identifier
- The string which will be used to identify this object in audit trails
and for debugging.
_Constant
boolean _Constant
- This instance field signifies if this instance of MutableNumber
has been designated a constant.
_Elements
BaseNumber[] _Elements
_Numerator
BaseNumber _Numerator
- _Numerator is the numerator of the rational quantity defined by this.
In practice, the numerator is always an Integral number,
by virtue of the available constructors and mutators.
_Denominator
BaseNumber _Denominator
- _Denominator is the denominator of the rational quantity defined by this.
In practice, the denominator is always an Integral number,
by virtue of the available constructors and mutators.
_Estimate
double _Estimate
- _Estimate is the best estimate of the value
(STRICTLY for debugging purposes only).
_Elements
java.util.HashMap _Elements
_Elements
BaseNumber[][] _Elements
_Scheme
int _Scheme
- The factoring scheme used for this Value.
The default value is $FactorNone, meaning the number should be interpreted
as is.
Other schemes include $FactorPi and $FactorE.
_Estimate
double _Estimate
_Super
java.math.BigInteger _Super
- This is a reference to the super instance (a BigInteger) which we would
have preferred to simply extend. That proved impossible when it turned
out that BigInteger neither supports any mutating methods, not does it
expose the methods or fields which would allow the implementation of
such mutating methods in a superclass.