Uses of Interface
net.ontopia.topicmaps.query.core.QueryResultIF
-
Packages that use QueryResultIF Package Description net.ontopia.topicmaps.nav2.taglibs.logic Logic tags, which define the execution context, modify the context, and control the flow of execution.net.ontopia.topicmaps.nav2.taglibs.TMvalue Value-producing tags, which extract information from the topic map and insert it into the execution context.net.ontopia.topicmaps.nav2.taglibs.tolog net.ontopia.topicmaps.nav2.utils Provides utility classes for the Navigator Tag Libraries and Framework.net.ontopia.topicmaps.query.core Contains the interfaces through which interaction with query processors, queries, and query results are done.net.ontopia.topicmaps.query.impl.basic Contains the in-memory implementation of the query language.net.ontopia.topicmaps.query.impl.rdbms Contains the rdbms implementation of the query language.net.ontopia.topicmaps.query.impl.utils Code shared between query implementations.net.ontopia.topicmaps.query.utils This package provides query utility classes.net.ontopia.topicmaps.rest.v1.query ontopoly.model -
-
Uses of QueryResultIF in net.ontopia.topicmaps.nav2.taglibs.logic
Methods in net.ontopia.topicmaps.nav2.taglibs.logic that return QueryResultIF Modifier and Type Method Description QueryResultIF
ContextTag. getQueryResult(String name)
Methods in net.ontopia.topicmaps.nav2.taglibs.logic with parameters of type QueryResultIF Modifier and Type Method Description void
ContextTag. registerQueryResult(String name, QueryResultIF queryResult)
-
Uses of QueryResultIF in net.ontopia.topicmaps.nav2.taglibs.TMvalue
Methods in net.ontopia.topicmaps.nav2.taglibs.TMvalue with parameters of type QueryResultIF Modifier and Type Method Description protected Collection
TologQueryTag. getMapCollection(QueryResultIF result)
INTERNAL: Wraps a QueryResultIF instance in a suitable MapCollection implementation. -
Uses of QueryResultIF in net.ontopia.topicmaps.nav2.taglibs.tolog
Subinterfaces of QueryResultIF in net.ontopia.topicmaps.nav2.taglibs.tolog Modifier and Type Interface Description interface
BufferedQueryResultIF
Classes in net.ontopia.topicmaps.nav2.taglibs.tolog that implement QueryResultIF Modifier and Type Class Description class
BufferedQueryResult
Fields in net.ontopia.topicmaps.nav2.taglibs.tolog declared as QueryResultIF Modifier and Type Field Description protected QueryResultIF
BufferedQueryResult. queryResult
protected QueryResultIF
QueryExecutingTag. queryResult
Methods in net.ontopia.topicmaps.nav2.taglibs.tolog that return QueryResultIF Modifier and Type Method Description protected QueryResultIF
QueryExecutingTag. getQueryResult()
Constructors in net.ontopia.topicmaps.nav2.taglibs.tolog with parameters of type QueryResultIF Constructor Description BufferedQueryResult(QueryResultIF queryResult, String query)
-
Uses of QueryResultIF in net.ontopia.topicmaps.nav2.utils
Methods in net.ontopia.topicmaps.nav2.utils that return QueryResultIF Modifier and Type Method Description protected QueryResultIF
TreeWidget. getChildren(TopicIF topic)
-
Uses of QueryResultIF in net.ontopia.topicmaps.query.core
Methods in net.ontopia.topicmaps.query.core that return QueryResultIF Modifier and Type Method Description QueryResultIF
ParsedQueryIF. execute()
PUBLIC: Executes the query, returning the query result.QueryResultIF
ParsedQueryIF. execute(Map<String,?> arguments)
PUBLIC: Executes the query binding the parameters in the query to the values given in the 'arguments' map, returning the query result.QueryResultIF
QueryProcessorIF. execute(String query)
PUBLIC: Parses and executes the query, returning the results.QueryResultIF
QueryProcessorIF. execute(String query, Map<String,?> arguments)
PUBLIC: Parses and executes the query binding the parameters in the query to the values given in the 'arguments' map, returning the results.QueryResultIF
QueryProcessorIF. execute(String query, Map<String,?> arguments, DeclarationContextIF context)
PUBLIC: Parses and executes the query in the given context binding the parameters in the query to the values given in the 'arguments' map, returning the results.QueryResultIF
QueryProcessorIF. execute(String query, DeclarationContextIF context)
PUBLIC: Parses and executes the query in the given context, returning the results. -
Uses of QueryResultIF in net.ontopia.topicmaps.query.impl.basic
Classes in net.ontopia.topicmaps.query.impl.basic that implement QueryResultIF Modifier and Type Class Description class
QueryResult
INTERNAL: The query result representation used by the basic implementation.Methods in net.ontopia.topicmaps.query.impl.basic that return QueryResultIF Modifier and Type Method Description QueryResultIF
ParsedQuery. execute()
QueryResultIF
ParsedQuery. execute(Map<String,?> arguments)
QueryResultIF
QueryProcessor. execute(String query)
QueryResultIF
QueryProcessor. execute(String query, Map arguments)
QueryResultIF
QueryProcessor. execute(String query, Map arguments, DeclarationContextIF context)
QueryResultIF
QueryProcessor. execute(String query, DeclarationContextIF context)
QueryResultIF
QueryProcessor. execute(TologQuery query)
QueryResultIF
QueryProcessor. execute(TologQuery query, Map arguments)
Methods in net.ontopia.topicmaps.query.impl.basic with parameters of type QueryResultIF Modifier and Type Method Description void
QueryMatches. add(QueryResultIF extra)
EXPERIMENTAL: Adds QueryResultIF matches to this table.static List<Map<String,Object>>
QueryResultWrappers. getWrapper(QueryResultIF result)
-
Uses of QueryResultIF in net.ontopia.topicmaps.query.impl.rdbms
Classes in net.ontopia.topicmaps.query.impl.rdbms that implement QueryResultIF Modifier and Type Class Description class
BooleanQueryResult
INTERNAL: Query result representating queries have no variables and evaluate to either true or false.class
QueryResult
INTERNAL: The query result representation used by the basic implementation.Methods in net.ontopia.topicmaps.query.impl.rdbms that return QueryResultIF Modifier and Type Method Description QueryResultIF
ParsedQuery. execute()
QueryResultIF
ParsedQuery. execute(Map arguments)
QueryResultIF
QueryProcessor. execute(String query)
QueryResultIF
QueryProcessor. execute(String query, Map arguments)
QueryResultIF
QueryProcessor. execute(String query, Map arguments, DeclarationContextIF context)
QueryResultIF
QueryProcessor. execute(String query, DeclarationContextIF context)
-
Uses of QueryResultIF in net.ontopia.topicmaps.query.impl.utils
Methods in net.ontopia.topicmaps.query.impl.utils that return QueryResultIF Modifier and Type Method Description QueryResultIF
QueryExecuterIF. execute(TologQuery query)
INTERNAL: Executes the query, returning the results. -
Uses of QueryResultIF in net.ontopia.topicmaps.query.utils
Fields in net.ontopia.topicmaps.query.utils declared as QueryResultIF Modifier and Type Field Description protected QueryResultIF
QueryResultIterator. result
protected QueryResultIF
SingleQueryResultIterator. result
Methods in net.ontopia.topicmaps.query.utils with parameters of type QueryResultIF Modifier and Type Method Description T
RowMapperIF. mapRow(QueryResultIF result, int rowno)
EXPERIMENTAL: This method is called once for each row in query results, and the returned object is added to the list returned by queryForList.Constructors in net.ontopia.topicmaps.query.utils with parameters of type QueryResultIF Constructor Description FlatQueryResultIterator(QueryResultIF result)
QueryResultIterator(QueryResultIF result)
SingleQueryResultIterator(QueryResultIF result)
-
Uses of QueryResultIF in net.ontopia.topicmaps.rest.v1.query
Methods in net.ontopia.topicmaps.rest.v1.query that return QueryResultIF Modifier and Type Method Description QueryResultIF
QueryController. query(TopicMapIF topicmap, String language, String query)
-
Uses of QueryResultIF in ontopoly.model
Methods in ontopoly.model that return QueryResultIF Modifier and Type Method Description protected QueryResultIF
QueryMapper. execute(String query, Map<String,?> params)
-