| Interface | Description |
|---|---|
| EqualityComparator<T> |
This interface provides an abstract concept of object equality independent of
Object.equals(java.lang.Object) (object equality) and the == operator
(reference equality). |
| IntSet |
A generic set of ints.
|
| Class | Description |
|---|---|
| AbstractEqualityComparator<T> |
This abstract base class is provided so performance-critical applications can
use virtual- instead of interface-dispatch when calling comparator methods.
|
| Array2DHashSet<T> |
Set implementation with closed hashing (open addressing). |
| DoubleKeyMap<Key1,Key2,Value> |
Sometimes we need to map a key to a value but key is two pieces of data.
|
| FlexibleHashMap<K,V> |
A limited map (many unsupported operations) that lets me use
varying hashCode/equals.
|
| FlexibleHashMap.Entry<K,V> | |
| GraphicsSupport | |
| IntegerList | |
| IntegerStack | |
| Interval |
An immutable inclusive interval a..b
|
| IntervalSet |
A set of integers that relies on ranges being common to do
"run-length-encoded" like compression (if you view an IntSet like
a BitSet with runs of 0s and 1s).
|
| JFileChooserConfirmOverwrite | |
| LogManager | |
| LogManager.Record | |
| MultiMap<K,V> | |
| MurmurHash | |
| ObjectEqualityComparator |
This default implementation of
EqualityComparator uses object equality
for comparisons by calling Object.hashCode() and Object.equals(java.lang.Object). |
| OrderedHashSet<T> |
A HashMap that remembers the order that the elements were added.
|
| Pair<A,B> | |
| TestRig |
Run a lexer/parser combo, optionally printing tree string or generating
postscript file.
|
| Triple<A,B,C> | |
| Utils |
| Exception | Description |
|---|---|
| ParseCancellationException |
This exception is thrown to cancel a parsing operation.
|
| Annotation Type | Description |
|---|---|
| NotNull | |
| Nullable |
Copyright © 1992-2013 ANTLR. All Rights Reserved.