See: Description
Class | Description |
---|---|
AlgebraStringRepresentationOutputCodec<E> |
A codec that uses an algebra's
Algebra.representAsString(java.lang.Object) method
to encode an object as a string. |
BinaryIrtgInputCodec |
An input codec for IRTGs in a binary file format.
|
BinaryIrtgOutputCodec |
An output codec for IRTGs in a binary file format.
|
BolinasGraphOutputCodec |
An output codec for storing an s-graph in a format that
the Bolinas tool
can read.
|
BolinasHrgInputCodec |
An input codec for reading hyperedge replacement grammars (HRGs) in the input
format for the Bolinas
parser.
|
BottomUpTreeAutomatonInputCodec |
A codec for reading tree automata written in Thomas Hanneforth's format
for weighted bottom-up tree automata.
|
CodecUtilities |
Shared methods that are useful in implementing codecs.
|
ExceptionErrorStrategy |
An error strategy for ANTLR parsers that reports errors
as exceptions.
|
GraphVizDotOutputCodec |
Output codec for visualizing s-graphs with the GraphViz tool (see graphvix.org).
|
InputCodec<E> |
Reconstructs an object from a representation.
|
IrtgInputCodec |
An input codec for IRTGs.
|
IsiAmrInputCodec |
Reads an AMR in the style of the ISI AMR-banks.
|
JoshuaInputCodec | |
ListOutputCodec | Deprecated |
NoSignatureBinaryIrtgInputCodec |
Use this with NoSignatureBinaryIrtgOutputCodec, together with a reference IRTG that contains
the signatures that are not written here (note that the mapping from IDs to symbols
in the reference IRTG must be identical to the one in the IRTG written here).
|
NoSignatureBinaryIrtgOutputCodec |
Use this with NoSignatureBinaryIrtgInputCodec, together with a reference IRTG that contains
the signatures that are not written here (note that the mapping from IDs to symbols
in the reference IRTG must be identical to the one in the IRTG written here).
|
OutputCodec<E> |
Generates a representation of some object.
|
PcfgIrtgInputCodec |
An input codec for context-free grammars, with or without rule probabilities.
|
PtbTreeInputCodec |
Reads trees in the format of the Penn Treebank.
|
PtbTreeOutputCodec | |
SgraphAmrOutputCodec |
Encodes an s-graph as an AMR in the style of the ISI AMR-banks.
|
SgraphAmrWithSourcesOutputCodec |
Encodes an s-graph as an AMR in the style of the ISI AMR-banks,
and also prints source names.
|
SGraphInputCodec |
Input codec corresponding to the default SGraph#toString method.
|
TemplateIrtgInputCodec |
An input codec for template IRTGs.
|
TiburonTreeAutomatonInputCodec |
A codec for reading weighted tree automata in the format used by
the Tiburon toolkit,
a tool for working with tree automata from ISI.
|
TikzQtreeOutputCodec |
An output codec that encodes Tree objects as Latex code,
using the the tikz-qtree
package.
|
TikzSgraphOutputCodec |
An output codec that encodes s-graphs as Latex code, using
the TikZ package.
|
ToStringOutputCodec |
An output codec that encodes arbitrary objects by simply
calling their
Object.toString() method. |
TreeAutomatonInputCodec |
An input codec that reads a top-down tree automaton.
|
TreeYieldOutputCodec |
An output codec that converts a tree to its yield string.
|
Exception | Description |
---|---|
CodecParseException |
An exception that occurred while parsing an input representation.
|
Annotation Type | Description |
---|---|
CodecMetadata |
An annotation type for adding metadata to a codec class.
|
Note that the only classes in this package that are meant for
public consumption are InputCodec
, OutputCodec
,
and their subclasses. All others are automatically produced by
parser generators, and are not intended to be used directly.
See the Alto wiki for an overview of the available codecs.
Copyright © 2017. All rights reserved.