Serialized Form
-
Package de.gsi.dataset.event
-
Class de.gsi.dataset.event.AddedDataEvent extends UpdatedDataEvent implements Serializable
- serialVersionUID:
- 1893124043479588248L
-
Class de.gsi.dataset.event.InvalidatedEvent extends UpdateEvent implements Serializable
- serialVersionUID:
- 6539189762419952854L
-
Class de.gsi.dataset.event.RemovedDataEvent extends UpdatedDataEvent implements Serializable
- serialVersionUID:
- 6539189762419952854L
-
Class de.gsi.dataset.event.UpdatedDataEvent extends UpdateEvent implements Serializable
- serialVersionUID:
- 2906468013676213645L
-
Class de.gsi.dataset.event.UpdatedMetaDataEvent extends UpdateEvent implements Serializable
- serialVersionUID:
- 233444066954702782L
-
Class de.gsi.dataset.event.UpdateEvent extends java.util.EventObject implements Serializable
- serialVersionUID:
- -3097725478448868303L
-
Serialized Fields
-
msg
java.lang.String msg
-
-
-
Package de.gsi.dataset.spi
-
Class de.gsi.dataset.spi.FifoDoubleErrorDataSet.LimitedQueue extends java.util.ArrayList<E> implements Serializable
- serialVersionUID:
- -5751322669709687363L
-
Serialized Fields
-
limit
int limit
-
-
-
Package de.gsi.dataset.utils
-
Class de.gsi.dataset.utils.LimitedQueue extends java.util.LinkedList<E> implements Serializable
- serialVersionUID:
- 7158175707385120597L
-
Serialized Fields
-
limit
int limit
-
-
-
Package de.gsi.dataset.utils.trees
-
Class de.gsi.dataset.utils.trees.AbstractMap.SimpleEntry extends java.lang.Object implements Serializable
- serialVersionUID:
- -8499721149061103585L
-
Class de.gsi.dataset.utils.trees.AbstractMap.SimpleImmutableEntry extends java.lang.Object implements Serializable
- serialVersionUID:
- 7138329143949025153L
-
Class de.gsi.dataset.utils.trees.IndexedTreeMap extends AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 919286545866124006L
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, java.lang.ClassNotFoundExceptionReconstitute theIndexedTreeMapinstance from a stream (i.e., deserialize it).- Throws:
java.io.IOException- in case of write errorsjava.lang.ClassNotFoundException- in case of class casting errors
-
writeObject
private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOExceptionSave the state of theIndexedTreeMapinstance to a stream (i.e., serialize it).- Serial Data:
- The size of the IndexedTreeMap (the number of key-value mappings) is emitted (int), followed by the key (Object) and value (Object) for each key-value mapping represented by the IndexedTreeMap. The key-value mappings are emitted in key-order (as determined by the IndexedTreeMap's Comparator, or by the keys' natural ordering if the IndexedTreeMap has no Comparator).
- Throws:
java.io.IOException- in case of write errors
-
-
Serialized Fields
-
comparator
java.util.Comparator<? super K> comparator
The comparator used to maintain order in this tree map, or null if it uses the natural ordering of its keys.
-
-
Class de.gsi.dataset.utils.trees.IndexedTreeMap.AscendingSubMap extends de.gsi.dataset.utils.trees.IndexedTreeMap.NavigableSubMap<K,V> implements Serializable
- serialVersionUID:
- 912986545866124060L
-
Class de.gsi.dataset.utils.trees.IndexedTreeMap.DescendingSubMap extends de.gsi.dataset.utils.trees.IndexedTreeMap.NavigableSubMap<K,V> implements Serializable
- serialVersionUID:
- 912986545866120460L
-
Serialized Fields
-
reverseComparator
java.util.Comparator<? super K> reverseComparator
-
-
Class de.gsi.dataset.utils.trees.IndexedTreeMap.NavigableSubMap extends java.util.AbstractMap<K,V> implements Serializable
- serialVersionUID:
- 2043167872700380033L
-
Serialized Fields
-
fromStart
boolean fromStart
-
hi
K hi
Endpoints are represented as triples (fromStart, lo, loInclusive) and (toEnd, hi, hiInclusive). If fromStart is true, then the low (absolute) bound is the start of the backing map, and the other values are ignored. Otherwise, if loInclusive is true, lo is the inclusive bound, else lo is the exclusive bound. Similarly for the upper bound. -
hiInclusive
boolean hiInclusive
-
lo
K lo
Endpoints are represented as triples (fromStart, lo, loInclusive) and (toEnd, hi, hiInclusive). If fromStart is true, then the low (absolute) bound is the start of the backing map, and the other values are ignored. Otherwise, if loInclusive is true, lo is the inclusive bound, else lo is the exclusive bound. Similarly for the upper bound. -
loInclusive
boolean loInclusive
-
m
IndexedTreeMap<K,V> m
The backing map. -
toEnd
boolean toEnd
-
-
Class de.gsi.dataset.utils.trees.IndexedTreeSet extends java.util.AbstractSet<E> implements Serializable
- serialVersionUID:
- -2479143000061671589L
-
Serialization Methods
-
readObject
private void readObject(java.io.ObjectInputStream s) throws java.io.IOException, java.lang.ClassNotFoundExceptionReconstitute theIndexedTreeSetinstance from a stream (that is, deserialize it).- Throws:
java.io.IOException- in case of write errorsjava.lang.ClassNotFoundException- in case of casting errors
-
writeObject
private void writeObject(java.io.ObjectOutputStream s) throws java.io.IOExceptionSave the state of theIndexedTreeSetinstance to a stream (that is, serialize it).- Serial Data:
- Emits the comparator used to order this set, or
nullif it obeys its elements' natural ordering (Object), followed by the size of the set (the number of elements it contains) (int), followed by all of its elements (each an Object) in order (as determined by the set's Comparator, or by the elements' natural ordering if the set has no Comparator). - Throws:
java.io.IOException- in case of IO problems
-
-