JADE v6.1

Serialized Form


Package com.dautelle.math

Class com.dautelle.math.DimensionException extends java.lang.RuntimeException implements Serializable

Class com.dautelle.math.LUDecomposition extends RealtimeObject implements Serializable

Serialized Fields

_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.

Class com.dautelle.math.Matrix extends RealtimeObject implements Serializable

Serialized Fields

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.

Class com.dautelle.math.Vector extends Matrix implements Serializable


Package com.dautelle.math.functions

Class com.dautelle.math.functions.Constant extends Polynomial implements Serializable

Class com.dautelle.math.functions.DiscreteFunction extends Function implements Serializable

Serialized Fields

_mapping

java.util.Map _mapping
Holds the mapping.


_variable

Function.Variable _variable
Holds the variable.

Class com.dautelle.math.functions.Function extends RealtimeObject implements Serializable

Class com.dautelle.math.functions.FunctionException extends java.lang.RuntimeException implements Serializable

Class com.dautelle.math.functions.Polynomial extends Function implements Serializable

Serialized Fields

_terms

FastMap _terms
Holds the terms of this polynomial with their associated coefficients.

Class com.dautelle.math.functions.Polynomial.Term extends RealtimeObject implements Serializable

Serialized Fields

_variable

Function.Variable _variable
Holds the first variable.


_power

int _power
Holds the variable exponent.


_next

Polynomial.Term _next
Holds the next variables (ordered).

Class com.dautelle.math.functions.RationalFunction extends Function implements Serializable

Serialized Fields

_dividend

Polynomial _dividend
Holds the dividend.


_divisor

Polynomial _divisor
Holds the divisor.


Package com.dautelle.math.numbers

Class com.dautelle.math.numbers.Complex extends RealtimeNumber implements Serializable

Serialized Fields

_real

double _real
Holds the real component.


_imaginary

double _imaginary
Holds the imaginary component.

Class com.dautelle.math.numbers.Float32 extends RealtimeNumber implements Serializable

Serialized Fields

_value

float _value
The associated double value.

Class com.dautelle.math.numbers.Float64 extends RealtimeNumber implements Serializable

Serialized Fields

_value

double _value
The associated double value.

Class com.dautelle.math.numbers.Integer32 extends RealtimeNumber implements Serializable

Serialized Fields

_value

int _value
The associated int value.

Class com.dautelle.math.numbers.Integer64 extends RealtimeNumber implements Serializable

Serialized Fields

_value

long _value
The associated long value.

Class com.dautelle.math.numbers.LargeInteger extends RealtimeNumber implements Serializable

Serialized Fields

_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.

Class com.dautelle.math.numbers.Rational extends RealtimeNumber implements Serializable

Serialized Fields

_dividend

LargeInteger _dividend
Holds the dividend.


_divisor

LargeInteger _divisor
Holds the divisor.

Class com.dautelle.math.numbers.Real extends RealtimeNumber implements Serializable

Serialized Fields

_mantissa

LargeInteger _mantissa
The mantissa value.


_error

LargeInteger _error
The mantissa error or null if NaN


_exponent

int _exponent
The decimal exponent.

Class com.dautelle.math.numbers.RealtimeNumber extends java.lang.Number implements Serializable


Package com.dautelle.money

Class com.dautelle.money.Currency extends BaseUnit implements Serializable

Class com.dautelle.money.Money extends Quantity implements Serializable


Package com.dautelle.physics

Class com.dautelle.physics.Acceleration extends Quantity implements Serializable

Class com.dautelle.physics.AmountOfSubstance extends Quantity implements Serializable

Class com.dautelle.physics.Angle extends Quantity implements Serializable

Class com.dautelle.physics.AngularAcceleration extends Quantity implements Serializable

Class com.dautelle.physics.AngularVelocity extends Quantity implements Serializable

Class com.dautelle.physics.Area extends Quantity implements Serializable

Class com.dautelle.physics.CatalyticActivity extends Quantity implements Serializable

Class com.dautelle.physics.DataAmount extends Quantity implements Serializable

Class com.dautelle.physics.DataRate extends Quantity implements Serializable

Class com.dautelle.physics.Duration extends Quantity implements Serializable

Class com.dautelle.physics.ElectricCapacitance extends Quantity implements Serializable

Class com.dautelle.physics.ElectricCharge extends Quantity implements Serializable

Class com.dautelle.physics.ElectricConductance extends Quantity implements Serializable

Class com.dautelle.physics.ElectricCurrent extends Quantity implements Serializable

Class com.dautelle.physics.ElectricInductance extends Quantity implements Serializable

Class com.dautelle.physics.ElectricPotential extends Quantity implements Serializable

Class com.dautelle.physics.ElectricResistance extends Quantity implements Serializable

Class com.dautelle.physics.Energy extends Quantity implements Serializable

Class com.dautelle.physics.Force extends Quantity implements Serializable

Class com.dautelle.physics.Frequency extends Quantity implements Serializable

Class com.dautelle.physics.Illuminance extends Quantity implements Serializable

Class com.dautelle.physics.Length extends Quantity implements Serializable

Class com.dautelle.physics.LuminousFlux extends Quantity implements Serializable

Class com.dautelle.physics.LuminousIntensity extends Quantity implements Serializable

Class com.dautelle.physics.MagneticFlux extends Quantity implements Serializable

Class com.dautelle.physics.MagneticFluxDensity extends Quantity implements Serializable

Class com.dautelle.physics.Mass extends Quantity implements Serializable

Class com.dautelle.physics.Power extends Quantity implements Serializable

Class com.dautelle.physics.Pressure extends Quantity implements Serializable

Class com.dautelle.physics.Quantity extends RealtimeNumber implements Serializable

Serialization Methods

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.

Class com.dautelle.physics.QuantityFormat extends java.text.Format implements Serializable

Class com.dautelle.physics.RadiationDoseAbsorbed extends Quantity implements Serializable

Class com.dautelle.physics.RadiationDoseEffective extends Quantity implements Serializable

Class com.dautelle.physics.RadioactiveActivity extends Quantity implements Serializable

Class com.dautelle.physics.Scalar extends Quantity implements Serializable

Class com.dautelle.physics.SolidAngle extends Quantity implements Serializable

Class com.dautelle.physics.Temperature extends Quantity implements Serializable

Class com.dautelle.physics.Torque extends Quantity implements Serializable

Class com.dautelle.physics.Velocity extends Quantity implements Serializable

Class com.dautelle.physics.Volume extends Quantity implements Serializable

Class com.dautelle.physics.VolumetricDensity extends Quantity implements Serializable


Package com.dautelle.realtime

Class com.dautelle.realtime.ConcurrentException extends java.lang.RuntimeException implements Serializable

Class com.dautelle.realtime.RealtimeObject extends java.lang.Object implements Serializable


Package com.dautelle.util

Class com.dautelle.util.Enum extends java.lang.Number implements Serializable

Serialization Methods

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()
Serialized Fields

_name

java.lang.String _name
Holds the name of this enum (for anonymous class: "className#ordinal").

Class com.dautelle.util.FastList extends RealtimeObject implements Serializable

Serialized Fields

_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).

Class com.dautelle.util.FastMap extends RealtimeObject implements Serializable

Serialization Methods

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.

Class com.dautelle.util.FastSet extends RealtimeObject implements Serializable

Serialized Fields

_map

FastMap _map
Holds the backing map.

Class com.dautelle.util.FastString extends RealtimeObject implements Serializable

Serialized Fields

_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.


Package com.dautelle.xml

Class com.dautelle.xml.ConstructorException extends java.lang.RuntimeException implements Serializable


Package javax.units

Class javax.units.AddConverter extends Converter implements Serializable

Serialized Fields

_offset

double _offset
Holds the offset.

Class javax.units.AlternateUnit extends DerivedUnit implements Serializable

Serialized Fields

_baseUnits

Unit _baseUnits
Holds the base units for this alternate unit.

Class javax.units.BaseUnit extends Unit implements Serializable

Class javax.units.ConversionException extends java.lang.RuntimeException implements Serializable

Class javax.units.Converter extends java.lang.Object implements Serializable

Class javax.units.DerivedUnit extends Unit implements Serializable

Class javax.units.LogConverter extends Converter implements Serializable

Serialized Fields

_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.

Class javax.units.MultiplyConverter extends Converter implements Serializable

Serialized Fields

_factor

double _factor
Holds the scale factor.

Class javax.units.ProductUnit extends DerivedUnit implements Serializable

Serialized Fields

_elements

ProductUnit.Element[] _elements
Holds the units composing this product unit.

Class javax.units.ProductUnit.Element extends java.lang.Object implements Serializable

Serialized Fields

_unit

Unit _unit
Holds the single unit.


_pow

int _pow
Holds the power exponent.


_root

int _root
Holds the root exponent.

Class javax.units.TransformedUnit extends DerivedUnit implements Serializable

Serialized Fields

_systemUnit

Unit _systemUnit
Holds the system unit.


_toSystem

Converter _toSystem
Holds the converter to the system unit.

Class javax.units.Unit extends java.lang.Object implements Serializable

Serialization Methods

readResolve

protected java.lang.Object readResolve()
Overrides readResolve() to ensure that deserialization maintains unit's unicity.

Serialized Fields

_symbol

java.lang.String _symbol
Holds the unit's symbol or null if none (e.g. ProductUnit, TransformedUnit).

Class javax.units.UnitFormat extends java.text.Format implements Serializable


JADE v6.1

Copyright © 2004 Jean-Marie Dautelle.