Package | Description |
---|---|
gov.sandia.cognition.text.convert |
Provides classes for converting objects to a textual representation.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractSingleTextualConverter<InputType,OutputType extends Textual>
An abstract implementation of the
SingleTextualConverter interface. |
class |
DocumentFieldConcatenator
A document-text converter that concatenates multiple text fields from a
document together for further processing.
|
class |
DocumentSingleFieldConverter
Extracts a single field from a document.
|
class |
ObjectToStringTextualConverter
A text converter that can take in any type of object and then returns a
new
DefaultTextual that wraps that object's toString() . |
Modifier and Type | Field and Description |
---|---|
protected SingleTextualConverter<? super InputType,? extends OutputType> |
SingleToMultiTextualConverterAdapter.converter
The single text converter being wrapped.
|
Modifier and Type | Method and Description |
---|---|
SingleTextualConverter<? super InputType,? extends OutputType> |
SingleToMultiTextualConverterAdapter.getConverter()
Gets the internal single textual converter being wrapped.
|
Modifier and Type | Method and Description |
---|---|
void |
SingleToMultiTextualConverterAdapter.setConverter(SingleTextualConverter<? super InputType,? extends OutputType> converter)
Sets the internal single textual converter being wrapped.
|
Constructor and Description |
---|
SingleToMultiTextualConverterAdapter(SingleTextualConverter<? super InputType,? extends OutputType> converter)
Creates a new
SingleToMultiTextualConverterAdapter with the given
internal converter. |