See: Description
Interface | Description |
---|---|
CoreMap |
Base type for all annotatable core objects.
|
Factory<T> |
A generified factory class which creates instances of a particular type.
|
FileProcessor |
Interface for a Visitor pattern for Files.
|
HasInterval<E extends java.lang.Comparable<E>> |
HasInterval interface
|
Index<E> |
A collection that maps between a vocabulary of type E and a
continuous non-negative integer index series beginning (inclusively) at 0.
|
Iterables.IncrementComparator<V1,V2> |
A comparator used by the merge functions to determine which of two
iterators to increment by one of the merge functions.
|
PriorityQueue<E> |
A Set that also represents an ordering of its elements, and responds
quickly to
add() , changePriority() ,
removeFirst() , and getFirst() method calls. |
Scored |
Scored: This is a simple interface that says that an object can answer
requests for the score, or goodness of the object.
|
TypesafeMap |
Type signature for a class that supports the basic operations required
of a typesafe heterogeneous map.
|
TypesafeMap.Key<VALUE> |
Base type of keys for the map.
|
Class | Description |
---|---|
AbstractIterator<E> |
Iterator with
remove() defined to throw an
UnsupportedOperationException . |
ArrayCoreMap |
Base implementation of
CoreMap backed by two Java arrays. |
ArrayMap<K,V> |
Map backed by an Array.
|
ArraySet<E> |
An array-backed set.
|
ArrayStringFilter |
Filters Strings based on whether they exactly match any string in
the array it is initially constructed with.
|
ArrayUtils |
Static utility methods for operating on arrays.
|
BinaryHeapPriorityQueue<E> |
PriorityQueue with explicit double priority values.
|
ByteStreamGobbler |
Stream Gobbler that read and write bytes
(can be used to gobble byte based stdout from a process.exec into a file)
|
CacheMap<K,V> |
A fixed size hash map with LRU replacement.
|
CallbackFunction |
A callback function (along the lines of Berkeley optimization repo), which is currently used in the optimization package.
|
CollectionFactory<T> |
Factory for vending Collections.
|
CollectionFactory.ArrayListFactory<T> | |
CollectionFactory.HashSetFactory<T> | |
CollectionFactory.LinkedListFactory<T> | |
CollectionFactory.SizedArrayListFactory<T> | |
CollectionFactory.TreeSetFactory<T> | |
CollectionUtils |
Collection of useful static methods for working with Collections.
|
CollectionValuedMap<K,V> |
Map from keys to
Collection s. |
Comparators | |
ConcatenationIterator<T> |
Iterator that represents the concatenation of two other iterators.
|
ConfusionMatrix<U> |
This implements a confusion table over arbitrary types of class labels.
|
DataFilePaths |
Simple utility class: reads the environment variable in
ENV_VARIABLE and provides a method that converts strings which
start with that environment variable to file paths.
|
DeltaCollectionValuedMap<K,V> |
Implementation of CollectionValuedMap that appears to store an "original"
map and changes to that map.
|
DeltaMap<K,V> |
A Map which wraps an original Map, and only stores the changes (deltas) from
the original Map.
|
ErasureUtils |
Class to gather unsafe operations into one place.
|
Execution |
A class to set command line options.
|
Execution.LazyFileIterator |
A lazy iterator over files, not loading all of them into memory at once.
|
FilePathProcessor |
The
FilePathProcessor traverses a directory structure and
applies the processFile method to files meeting some
criterion. |
FilteredIterator<T> |
Iterator that suppresses items in another iterator based on a filter function.
|
Filters |
Static class with some useful
Predicate implementations and utility methods for working
with Predicates . |
Filters.ConjFilter<T> |
Conjunction of a list of filters.
|
Filters.DisjFilter<T> |
Disjunction of a list of filters.
|
Filters.RandomFilter<E> |
A filter that accepts a random fraction of the input it sees.
|
FixedPrioritiesPriorityQueue<E> |
A priority queue based on a binary heap.
|
Generics |
A collection of utilities to make dealing with Java generics less
painful and verbose.
|
HashableCoreMap |
An extension of
ArrayCoreMap with an immutable set of key,value
pairs that is used for equality and hashcode comparisons. |
HashIndex<E> |
Implements an Index that supports constant-time lookup in
both directions (via
get(int) and indexOf(E) . |
IdentityHashSet<E> |
This class provides a
IdentityHashMap -backed
implementation of the Set interface. |
Interner<T> |
For interning (canonicalizing) things.
|
Interval<E extends java.lang.Comparable<E>> |
Represents a interval of a generic type E that is comparable.
|
IntervalTree<E extends java.lang.Comparable<E>,T extends HasInterval<E>> |
An interval tree maintains a tree so that all intervals to the left start
before current interval and all intervals to the right start after.
|
IntervalTree.TreeNode<E extends java.lang.Comparable<E>,T extends HasInterval<E>> | |
IntPair | |
IntQuadruple | |
IntTriple | |
IntTuple |
A tuple of int.
|
IntUni |
Just a single integer
|
IterableIterator<E> |
This cures a pet peeve of mine: that you can't use an Iterator directly in
Java 5's foreach construct.
|
Iterables |
Utilities for helping out with Iterables as Collections is to Collection.
|
Lazy<E> |
An instantiation of a lazy object.
|
MapFactory<K,V> |
A factory class for vending different sorts of Maps.
|
Maps |
Utilities for Maps, including inverting, composing, and support for list/set values.
|
MetaClass |
A meta class using Java's reflection library.
|
MetaClass.ClassFactory<T> | |
MutableDouble |
A class for Double objects that you can change.
|
MutableInteger |
A class for Integer objects that you can change.
|
Pair<T1,T2> |
Pair is a Class for holding mutable pairs of objects.
|
Pair.ByFirstPairComparator<T1,T2> |
Compares a
Pair to another Pair according to the first object of the pair only
This function will work providing
the first element of the Pair is comparable, otherwise will throw a
ClassCastException |
Pair.ByFirstReversePairComparator<T1,T2> |
Compares a
Pair to another Pair according to the first object of the pair only in decreasing order
This function will work providing
the first element of the Pair is comparable, otherwise will throw a
ClassCastException |
Pair.BySecondPairComparator<T1,T2> |
Compares a
Pair to another Pair according to the second object of the pair only
This function will work providing
the first element of the Pair is comparable, otherwise will throw a
ClassCastException |
Pair.BySecondReversePairComparator<T1,T2> |
Compares a
Pair to another Pair according to the second object of the pair only in decreasing order
This function will work providing
the first element of the Pair is comparable, otherwise will throw a
ClassCastException |
PropertiesUtils |
Utilities methods for standard (but woeful) Java Properties objects.
|
PropertiesUtils.Property | |
ReflectionLoading |
The goal of this class is to make it easier to load stuff by
reflection.
|
RegexStringFilter |
Filters Strings based on whether they match a given regex.
|
ScoredObject<T> |
Wrapper class for holding a scored object.
|
Sets |
Utilities for sets.
|
StreamGobbler |
Reads the output of a process started by Process.exec()
Adapted from:
http://www.velocityreviews.com/forums/t130884-process-runtimeexec-causes-subprocess-hang.html
|
StringParsingTask<E> |
An instantiation of this abstract class parses a
String and
returns an object of type E . |
StringUtils |
StringUtils is a class for random String things, including output formatting and command line argument parsing.
|
Timing |
A class for measuring how long things take.
|
Triple<T1,T2,T3> |
Class representing an ordered triple of objects, possibly typed.
|
TwoDimensionalCollectionValuedMap<K1,K2,V> |
A class which can store mappings from Object keys to
Collection s of Object values. |
TwoDimensionalMap<K1,K2,V> | |
TwoDimensionalMap.Entry<K1,K2,V> |
This inner class represents a single entry in the TwoDimensionalMap.
|
UTF8EquivalenceFunction |
A word function that can be applied to Chinese text in the tagger
or similar systems to make it treat ( and ( the same.
|
ValuedInterval<T,E extends java.lang.Comparable<E>> |
Interval with value
|
XMLUtils |
Provides some utilities for dealing with XML files, both by properly
parsing them and by using the methods of a desperate Perl hacker.
|
XMLUtils.XMLTag |
Enum | Description |
---|---|
ArrayStringFilter.Mode | |
Interval.RelType |
RelType gives the basic types of relations between two intervals
|
Exception | Description |
---|---|
HashableCoreMap.HashableCoreMapException |
An exception thrown when attempting to change the value associated
with an (immutable) hash key in a HashableCoreMap.
|
MetaClass.ClassCreationException | |
MetaClass.ConstructorNotFoundException | |
ReflectionLoading.ReflectionLoadingException |
This class encapsulates all of the exceptions that can be thrown
when loading something by reflection.
|
RuntimeInterruptedException |
An unchecked version of
InterruptedException . |
StringParsingTask.ParserException |
Annotation Type | Description |
---|---|
Execution.Option |
A collection of useful general-purpose utility classes. Below is a selection of some of the most useful utility classes. Consult the class comments for more details on any of these classes.
Filters
: Defines general useful Predicate
and utility functions for dealing with predicates.Index
: List that also maintains a constant-time reverse-lookup of indices for its
Objects.StringUtils
: Static class with lots of useful String manipulation and formatting
methods.Timing
: Static class for measuring how long something takes to execute.Other packages with some useful utilies
edu.stanford.nlp.io
edu.stanford.nlp.process
edu.stanford.nlp.stats
edu.stanford.nlp.swing
edu.stanford.nlp.web