Package | Description |
---|---|
gov.sandia.cognition.text |
Provides classes for processing text.
|
gov.sandia.cognition.text.convert |
Provides classes for converting objects to a textual representation.
|
gov.sandia.cognition.text.document |
Provides representations for textual documents.
|
gov.sandia.cognition.text.token |
Provides text tokenization algorithms.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractTextual
A default implementation of the
Textual interface. |
class |
DefaultTextual
A default implementation of the
Textual interface that just stores
a string value. |
Constructor and Description |
---|
DefaultTextual(Textual other)
Creates a new
DefaultTextual that takes the string text value
from the given Textual object. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMultiTextualConverter<InputType,OutputType extends Textual>
An abstract implementation of the
MultiTextualConverter interface. |
class |
AbstractSingleTextualConverter<InputType,OutputType extends Textual>
An abstract implementation of the
SingleTextualConverter interface. |
class |
AbstractTextualConverter<InputType,OutputType extends Textual>
An abstract implementation of the
TextualConverter interface. |
interface |
MultiTextualConverter<InputType,OutputType extends Textual>
Interface for an
TextConverter that converts an input into possibly
multiple output textual objects. |
interface |
SingleTextualConverter<InputType,OutputType extends Textual>
Interface for an
TextConverter that converts an input into a single
output. |
class |
SingleToMultiTextualConverterAdapter<InputType,OutputType extends Textual>
Adapts a
SingleTextualConverter to work within the interface of an
MultiTextualConverter . |
interface |
TextualConverter<InputType,OutputType extends Textual>
Interface for a class that can convert some type of object into one or more
textual objects.
|
Modifier and Type | Method and Description |
---|---|
Textual |
DocumentFieldConcatenator.evaluate(Document document) |
Modifier and Type | Interface and Description |
---|---|
interface |
Field
Defines the interface for a field in the document.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractField
An abstract implementation of the
Field interface. |
class |
DefaultDateField
A field for storing a date.
|
class |
DefaultTextField
A default implementation of the
Field interface. |
Modifier and Type | Method and Description |
---|---|
java.lang.Iterable<Token> |
AbstractTokenizer.tokenize(Textual textual) |
java.lang.Iterable<Token> |
Tokenizer.tokenize(Textual textual)
Convert the given string into a corresponding ordered list of tokens.
|