Uses of Interface
com.languagecomputer.api.query.Query

Packages that use Query
com.languagecomputer.api   
com.languagecomputer.api.query   
 

Uses of Query in com.languagecomputer.api
 

Methods in com.languagecomputer.api that return Query
 Query QuestionProcessingServiceWebClient.process(String question)
          Processes the given question, returning a new Query object that contains all the query representations that this QuestionProcessingService is capable of providing.
 Query QuestionProcessingService.process(String question)
          Processes the given question, returning a new Query object that contains all the query representations that this QuestionProcessingService is capable of providing.
 

Methods in com.languagecomputer.api with parameters of type Query
 List<Answer> AnswerExtractionServiceWebClient.extractAnswers(Query query, List<QueryResult> queryResults)
          Extracts Answers for the given Query from the given QueryResults.
 List<Answer> AnswerExtractionService.extractAnswers(Query query, List<QueryResult> queryResults)
          Extracts Answers for the given Query from the given QueryResults.
 List<Answer> AnswerFusionServiceWebClient.fuseAnswers(Query query, List<Answer> answers)
          Fuses the given Answers to the given Query into a new list of Answers.
 List<Answer> AnswerFusionService.fuseAnswers(Query query, List<Answer> answers)
          Fuses the given Answers to the given Query into a new list of Answers.
 List<Answer> QuestionAnsweringServiceWebClient.getAnswers(Query query)
          Finds answers to the given Query (optional operation).
 List<Answer> DefaultQuestionAnsweringMetaService.getAnswers(Query query)
          Finds answers to the given Query (optional operation).
 List<Answer> QuestionAnsweringService.getAnswers(Query query)
          Finds answers to the given Query (optional operation).
 List<QueryResult> DocumentRetrievalServiceWebClient.retrieve(Query query)
          Retrieves a List of sorted QueryResults for the given Query.
 List<QueryResult> DocumentRetrievalService.retrieve(Query query)
          Retrieves a List of sorted QueryResults for the given Query.
 String SummarizationService.summarize(Iterable<Document> documents, Query query)
          Summarizes the given Documents using the given (optional) Query.
 

Uses of Query in com.languagecomputer.api.query
 

Classes in com.languagecomputer.api.query that implement Query
 class DefaultQuery
          Default implementation of a Query.
 class MergedQuery
          A Query implementation that acts as a merger of more than one Query objects.
 

Methods in com.languagecomputer.api.query that return Query
 Query QueryXML.readQuery(Reader reader)
          Reads the XML into a new Query.
 

Methods in com.languagecomputer.api.query that return types with arguments of type Query
 List<Query> MergedQuery.getSubQueries()
          Returns the Query subobjects that compose this MergedQuery.
 

Methods in com.languagecomputer.api.query with parameters of type Query
 void QueryXML.writeQuery(Query query, Writer writer)
          Writes the given Query to XML in the given Writer.
 

Constructor parameters in com.languagecomputer.api.query with type arguments of type Query
MergedQuery(List<Query> queries)
          Creates a new MergedQuery with the given Querys.
 



Copyright © 2009. All Rights Reserved.