Serialized Form


Package javolution.context

Class AllocatorContext extends Context implements Serializable

Class ConcurrentContext extends Context implements Serializable

Class ConcurrentException extends RuntimeException implements Serializable

serialVersionUID: 1L

Serialized Fields

_cause

Throwable _cause
Holds the cause.

Class Context extends Object implements Serializable

Serialized Fields

_owner

Thread _owner
Holds the current owner of this context or null if global context.


_outer

Context _outer
Holds the outer context or null if none (root context).


_factory

ObjectFactory<T> _factory
Holds the factory having produced this context if any (for recycling purpose upon exit).


_allocator

AllocatorContext _allocator
Holds the inherited allocator context or null

Class HeapContext extends AllocatorContext implements Serializable

Class ImmortalContext extends AllocatorContext implements Serializable

Class LocalContext extends Context implements Serializable

Serialized Fields

_references

FastMap<K,V> _references
Holds any reference associated to this context (reference to referent mapping).

Class LogContext extends Context implements Serializable

Class PersistentContext extends Context implements Serializable

Serialized Fields

_idToValue

FastMap<K,V> _idToValue
Holds current id to value mapping.

Class PoolContext extends AllocatorContext implements Serializable

Class SecurityContext extends Context implements Serializable

Class StackContext extends AllocatorContext implements Serializable


Package javolution.testing

Class AssertionException extends RuntimeException implements Serializable

serialVersionUID: 1L

Class JUnitContext extends TestContext implements Serializable

Class TestContext extends LogContext implements Serializable

Class TimeContext extends TestContext implements Serializable

Serialized Fields

_minimumPs

long _minimumPs
Holds the minimum execution time in picoseconds.


_averagePs

long _averagePs
Holds the average execution time in picoseconds.


_maximumPs

long _maximumPs
Holds the maximum execution time in picoseconds.


Package javolution.text

Class Text extends Object implements Serializable

Serialized Fields

_data

char[] _data
Holds the raw data (primitive) or null (composite).


_count

int _count
Holds the total number of characters.


_head

Text _head
Holds the head block of character (composite).


_tail

Text _tail
Holds the tail block of character (composite).

Class TextBuilder extends Object implements Serializable

Serialized Fields

_low

char[] _low

_high

char[][] _high

_length

int _length
Holds the current length.


_capacity

int _capacity
Holds current capacity.


Package javolution.util

Class FastBitSet extends FastCollection<Index> implements Serializable

serialVersionUID: 1L

Serialized Fields

bits

long[] bits
Holds the bits (64 bits per long).


_length

int _length
Holds the length in words (long) of this bit set. Any word at or above the current length should be ignored (assumed to be zero).

Class FastCollection extends Object implements Serializable

Class FastComparator extends Object implements Serializable

Class FastList extends FastCollection<E> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Throws:
IOException

Class FastList.Node extends Object implements Serializable

Serialized Fields

_next

FastList.Node<E> _next
Holds the next node.


_previous

FastList.Node<E> _previous
Holds the previous node.


_value

Object _value
Holds the node value.

Class FastMap extends Object implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Requires special handling during de-serialization process.

Throws:
IOException - if an I/O error occurs.
ClassNotFoundException - if the class for the object de-serialized is not found.

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Requires special handling during serialization process.

Throws:
IOException - if an I/O error occurs.

Class FastSet extends FastCollection<E> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Throws:
IOException

Class FastTable extends FastCollection<E> implements Serializable

serialVersionUID: 1L

Serialization Methods

readObject

private void readObject(ObjectInputStream stream)
                 throws IOException,
                        ClassNotFoundException
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(ObjectOutputStream stream)
                  throws IOException
Throws:
IOException

Class Index extends Number implements Serializable

serialVersionUID: 1L

Serialization Methods

readResolve

protected final Object readResolve()
                            throws ObjectStreamException
Ensures index unicity during deserialization.

Throws:
ObjectStreamException
Serialized Fields

_value

int _value
Holds the index position.

Class StandardLog extends LogContext implements Serializable

Serialized Fields

_logger

Logger _logger
The logger associated to this logging context.


Package javolution.xml

Class QName extends Object implements Serializable

Serialization Methods

readResolve

private Object readResolve()
                    throws ObjectStreamException
Throws:
ObjectStreamException
Serialized Fields

_toString

String _toString
Holds the string representation.

Class XMLBinding extends Object implements Serializable

Serialized Fields

_classAttribute

QName _classAttribute
Holds the class attribute.


_classToAlias

FastMap<K,V> _classToAlias
Holds the class to alias (QName) mapping.


_aliasToClass

FastMap<K,V> _aliasToClass
Holds the alias (QName) to class mapping.


Package javolution.xml.stream

Class XMLStreamException extends Exception implements Serializable

serialVersionUID: 1L

Serialized Fields

_nested

Throwable _nested
Holds the nested exception if any.


_location

Location _location
Holds the location.



Copyright © 2005-2012 Javolution. All Rights Reserved.