Serialized Form
array_
jdsl.core.ref.ArrayHeap.AHLocator[] array_
-
size_
int size_
-
comp_
Comparator comp_
- The comparator used to prioritize the keys.
-
shrink_
boolean shrink_
-
locatorsArray_
Locator[] locatorsArray_
-
keysArray_
java.lang.Object[] keysArray_
-
elementsArray_
java.lang.Object[] elementsArray_
-
readObject
private final void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
writeObject
private final void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
readObject
private void readObject(java.io.ObjectInputStream s)
throws java.io.IOException,
java.lang.ClassNotFoundException
- Reads a HashtableDictionary in from a serialized form.
writeObject
private void writeObject(java.io.ObjectOutputStream s)
throws java.io.IOException
- Writes a HashtableDictionary out to a serialized form.
locatorCache_
Locator[] locatorCache_
-
keyCache_
java.lang.Object[] keyCache_
-
elementCache_
java.lang.Object[] elementCache_
-
comp_
HashComparator comp_
- The comparator which is used to test for comparability and
equality of keys.
-
_parent
NodeBinaryTree.NBTNode _parent
- The parent of this node; never null while position is in tree
may be a supernode.
-
_left
NodeBinaryTree.NBTNode _left
- This node's left child. If this node is external, _left == null
-
_right
NodeBinaryTree.NBTNode _right
- This node's right child. If this node is external, _right== null
-
_container
NodeBinaryTree _container
- This node's container
-
_element
java.lang.Object _element
- This node's element. May be null.
-
_tree
NodeBinaryTree _tree
- The tree that contains me
-
_root
NodeBinaryTree.NBTNode _root
- That tree's root
-
_startPos
jdsl.core.ref.NodeCircularSequence.NCSNode _startPos
- An arbitrary position in the Container.
-
_size
int _size
- The stored size of the Sequence -- modified on insertion or
removal.
-
positionCache_
Position[] positionCache_
- Cache for positions; discarded upon modification of structure
-
elementCache_
java.lang.Object[] elementCache_
- Cache for positions; discarded upon modification of structure or
elements
-
next_
NodeSequence.FNSNode next_
- The nodes immediately before and after this one (may be null
if this node is at an end of the Sequence)
-
prev_
NodeSequence.FNSNode prev_
- The nodes immediately before and after this one (may be null
if this node is at an end of the Sequence)
-
cont_
InspectableContainer cont_
- The container that this node belongs to
(this makes O(1) time calls to contains() possible)
-
elt_
java.lang.Object elt_
- The element this position stores
-