See: Description
| Interface | Description |
|---|---|
| MultiTextualConverter<InputType,OutputType extends Textual> |
Interface for an
TextConverter that converts an input into possibly
multiple output textual objects. |
| SingleTextualConverter<InputType,OutputType extends Textual> |
Interface for an
TextConverter that converts an input into a single
output. |
| TextualConverter<InputType,OutputType extends Textual> |
Interface for a class that can convert some type of object into one or more
textual objects.
|
| Class | Description |
|---|---|
| AbstractMultiTextualConverter<InputType,OutputType extends Textual> |
An abstract implementation of the
MultiTextualConverter interface. |
| AbstractSingleTextualConverter<InputType,OutputType extends Textual> |
An abstract implementation of the
SingleTextualConverter interface. |
| AbstractTextualConverter<InputType,OutputType extends Textual> |
An abstract implementation of the
TextualConverter interface. |
| CommonDocumentTextualConverterFactory |
A utility class for creating common document-text converters.
|
| DocumentFieldConcatenator |
A document-text converter that concatenates multiple text fields from a
document together for further processing.
|
| DocumentSingleFieldConverter |
Extracts a single field from a document.
|
| ObjectToStringTextualConverter |
A text converter that can take in any type of object and then returns a
new
DefaultTextual that wraps that object's toString(). |
| SingleToMultiTextualConverterAdapter<InputType,OutputType extends Textual> |
Adapts a
SingleTextualConverter to work within the interface of an
MultiTextualConverter. |