Serialized Form
Package com.dautelle.math |
_size
int _size
- Holds the size of the square matrix source.
_lu
Operable[] _lu
- Holds the LU elements.
_pivots
int[] _pivots
- Holds the pivots indexes.
_permutationCount
int _permutationCount
- Holds the number of permutation performed.
o
Operable[] o
- The array of operable objects (M[i][j] = o[i*m+j], i < n, j < m).
n
int n
- Holds the number of rows.
m
int m
- Holds the number of columns.
Package com.dautelle.math.functions |
_mapping
java.util.Map _mapping
- Holds the mapping.
_variable
Function.Variable _variable
- Holds the variable.
_terms
FastMap _terms
- Holds the terms of this polynomial with their associated coefficients.
_variable
Function.Variable _variable
- Holds the first variable.
_power
int _power
- Holds the variable exponent.
_next
Polynomial.Term _next
- Holds the next variables (ordered).
_dividend
Polynomial _dividend
- Holds the dividend.
_divisor
Polynomial _divisor
- Holds the divisor.
Package com.dautelle.math.numbers |
_real
double _real
- Holds the real component.
_imaginary
double _imaginary
- Holds the imaginary component.
_value
float _value
- The associated double value.
_value
double _value
- The associated double value.
_value
int _value
- The associated int value.
_value
long _value
- The associated long value.
_isNegative
boolean _isNegative
- Indicates if this large integer is negative.
_size
int _size
- The size of this large integer in words.
The most significand word different from 0 is at index: _size-1
_words
long[] _words
- This large integer positive words (63 bits).
Least significant word first (index 0).
_remainder
LargeInteger _remainder
- Holds the remainder after a
LargeInteger.divide(int)
operation.
_dividend
LargeInteger _dividend
- Holds the dividend.
_divisor
LargeInteger _divisor
- Holds the divisor.
_mantissa
LargeInteger _mantissa
- The mantissa value.
_error
LargeInteger _error
- The mantissa error or
null
if NaN
_exponent
int _exponent
- The decimal exponent.
Package com.dautelle.money |
Package com.dautelle.physics |
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Requires special handling during de-serialization process.
- Throws:
java.io.IOException
- if an I/O error occurs.
java.lang.ClassNotFoundException
- if the class for the object de-serialized
is not found.
writeObject
private void writeObject(java.io.ObjectOutputStream stream)
throws java.io.IOException
- Requires special handling during serialization process.
- Throws:
java.io.IOException
- if an I/O error occurs.
Package com.dautelle.realtime |
Package com.dautelle.util |
readResolve
protected java.lang.Object readResolve()
throws java.io.ObjectStreamException
- Overrides
readResolve()
to support
Serialization
. Enum are uniquely identified by their
name (independantly of their values to avoid class loading dependencies).
- Throws:
java.io.ObjectStreamException
- if the enum is not found.- See Also:
Enum.getName()
_name
java.lang.String _name
- Holds the name of this enum (for anonymous class: "className#ordinal").
_parent
FastList _parent
- This pointer leads either to thyself or to #subList parent.
_length
int _length
- The size of the list (or a sub-list).
Please, do not modify the _length directly,
use #incLength and #decLength methods instead,
because length must be modified both in the parent list and in the sub-list.
_root
com.dautelle.util.FastList.Node _root
- The root of the list, always present, but not used for storage.
Modified in
FastList.subList(int, int)
.
_root.next
is the first real node of the list.
_last
com.dautelle.util.FastList.Node _last
- The last node of the list (or
_sink
if the list is empty).
_sink
com.dautelle.util.FastList.Node _sink
- End of list, must be used instead of
null
.
Modified in FastList.subList(int, int)
.
readObject
private void readObject(java.io.ObjectInputStream stream)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Requires special handling during de-serialization process.
- Throws:
java.io.IOException
- if an I/O error occurs.
java.lang.ClassNotFoundException
- if the class for the object de-serialized
is not found.
writeObject
private void writeObject(java.io.ObjectOutputStream stream)
throws java.io.IOException
- Requires special handling during serialization process.
- Throws:
java.io.IOException
- if an I/O error occurs.
_map
FastMap _map
- Holds the backing map.
_data
char[] _data
- Holds the shared character data for this real-time String.
_first
int _first
- Holds the index of the first character of this real-time String.
_length
int _length
- Holds the length of this real-time String.
_hashCode
int _hashCode
- Caches the hash code for this real-time String.
_offset
double _offset
- Holds the offset.
_baseUnits
Unit _baseUnits
- Holds the base units for this alternate unit.
_base
double _base
- Holds the logarithmic base.
_logBase
double _logBase
- Holds the natural logarithm of the base.
_invLogBase
double _invLogBase
- Holds the inverse of the natural logarithm of the base.
_inverse
javax.units.LogConverter.Inverse _inverse
- Holds the inverse of this converter.
_factor
double _factor
- Holds the scale factor.
_elements
ProductUnit.Element[] _elements
- Holds the units composing this product unit.
_unit
Unit _unit
- Holds the single unit.
_pow
int _pow
- Holds the power exponent.
_root
int _root
- Holds the root exponent.
_systemUnit
Unit _systemUnit
- Holds the system unit.
_toSystem
Converter _toSystem
- Holds the converter to the system unit.
readResolve
protected java.lang.Object readResolve()
- Overrides
readResolve()
to ensure that deserialization
maintains unit's unicity.
_symbol
java.lang.String _symbol
- Holds the unit's symbol or
null
if none
(e.g. ProductUnit
, TransformedUnit
).
Copyright © 2004 Jean-Marie Dautelle.