Uses of Interface
com.languagecomputer.api.text.Document

Packages that use Document
com.languagecomputer.api   
com.languagecomputer.api.query   
com.languagecomputer.api.text   
com.languagecomputer.client   
 

Uses of Document in com.languagecomputer.api
 

Methods in com.languagecomputer.api that return Document
 Document IndexServiceWebClient.get(String docID)
          Loads the Document with the given docID from the index.
 Document IndexService.get(String docID)
          Loads the Document with the given docID from the index.
 Document DocumentServiceWebClient.process(File file)
          Processes the given File, placing the processed contents into the returned Document.
 Document DocumentService.process(File file)
          Processes the given File, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(File file, String fileType)
          Processes the given File, placing the processed contents into the returned Document.
 Document DocumentService.process(File file, String fileType)
          Processes the given File, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(InputStream stream)
          Processes the given InputStream, placing the processed contents into the returned Document.
 Document DocumentService.process(InputStream stream)
          Processes the given InputStream, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(InputStream stream, String fileType)
          Processes the given InputStream, placing the processed contents into the returned Document.
 Document DocumentService.process(InputStream stream, String fileType)
          Processes the given InputStream, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(URI uri)
          Processes the given URI, placing the processed contents into the returned Document.
 Document DocumentService.process(URI uri)
          Processes the given URI, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(URI uri, String fileType)
          Processes the given URI, placing the processed contents into the returned Document.
 Document DocumentService.process(URI uri, String fileType)
          Processes the given URI, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(URL url)
          Processes the given URL, placing the processed contents into the returned Document.
 Document DocumentService.process(URL url)
          Processes the given URL, placing the processed contents into the returned Document.
 Document DocumentServiceWebClient.process(URL url, String fileType)
          Processes the given URL, placing the processed contents into the returned Document.
 Document DocumentService.process(URL url, String fileType)
          Processes the given URL, placing the processed contents into the returned Document.
 Document AnnotationMetaServiceWebClient.process(URL url, String fileType, List<String> services)
          Process the given URL of the given type, then annotate the given services.
 Document DefaultAnnotationMetaService.process(URL url, String type, List<String> services)
          Process the given URL of the given type, then annotate the given services.
 Document AnnotationMetaService.process(URL url, String fileType, List<String> services)
          Process the given URL of the given type, then annotate the given services.
 

Methods in com.languagecomputer.api with parameters of type Document
 void AnnotationMetaServiceWebClient.annotate(Document document, List<String> services)
          Process the given Document with the given services.
 void DefaultAnnotationMetaService.annotate(Document document, List<String> services)
          Process the given Document with the given services.
 void AnnotationMetaService.annotate(Document document, List<String> services)
          Process the given Document with the given services.
 void IndexServiceWebClient.index(Document document)
          Indexes the given Document.
 void IndexService.index(Document document)
          Indexes the given Document.
 void CoreferenceServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void TemporalServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void SpatialServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void AttributeServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void EntityServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void EventServiceWebClient.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 void AnnotationService.process(Document document)
          Annotates the given Document, attaching the results as Text objects.
 

Method parameters in com.languagecomputer.api with type arguments of type Document
 String SummarizationService.summarize(Iterable<Document> documents, Query query)
          Summarizes the given Documents using the given (optional) Query.
 

Uses of Document in com.languagecomputer.api.query
 

Methods in com.languagecomputer.api.query that return Document
 Document DefaultQueryResult.getDocument()
          Returns the Document associated with this QueryResult.
 Document QueryResult.getDocument()
          Returns the Document associated with this QueryResult.
 

Methods in com.languagecomputer.api.query with parameters of type Document
 void DefaultQueryResult.setDocument(Document document)
          Sets the Document to use for this DefaultQueryResult.
 

Uses of Document in com.languagecomputer.api.text
 

Classes in com.languagecomputer.api.text that implement Document
 class DefaultDocument
          Default implementation of a Document.
 

Fields in com.languagecomputer.api.text with type parameters of type Document
static AnnotationType<Document> Document.TYPE
           
 

Methods in com.languagecomputer.api.text that return Document
 Document DefaultDocument.getDocument()
          Returns this DefaultDocument.
 Document DefaultText.getDocument()
          Returns the Document in which this Text exists.
 Document Text.getDocument()
          Returns the Document in which this Text exists.
 Document DocumentXML.readDocument(Reader reader)
          Reads the XML into a new Document.
 

Methods in com.languagecomputer.api.text that return types with arguments of type Document
 List<Document> DocumentXML.readDocuments(Reader reader)
          Reads the XML into a new List of Document.
 

Methods in com.languagecomputer.api.text with parameters of type Document
 Collection<Text> DocumentXML.readAnnotations(Reader reader, Document document)
          Reads the XML into a new Collection of Texts and adds any services to the Document's service list.
 void DefaultDocument.setDocument(Document document)
          Not allowed: DefaultDocument.getDocument() can only return this DefaultDocument.
 void DefaultText.setDocument(Document document)
          Sets the Document without adding this DefaultText to it.
 void DocumentXML.writeDocument(Document document, Writer writer)
          Writes the given Document to XML in the given Writer.
 

Method parameters in com.languagecomputer.api.text with type arguments of type Document
 void DocumentXML.writeDocuments(List<Document> documents, Writer writer)
          Writes the given Documents to XML in the given Writer.
 

Uses of Document in com.languagecomputer.client
 

Methods in com.languagecomputer.client that return Document
protected  Document BatchWebClient.process(String file)
          Processes the given file as either a URL or File.
protected  Document StreamingBatchWebClient.process(String file)
           
 

Methods in com.languagecomputer.client with parameters of type Document
static void WebClient.print(Document document)
          Prints the Document contents and annotations to stdout.
 



Copyright © 2009. All Rights Reserved.