Uses of Interface
cz.cvut.kbss.jopa.model.query.Parameter
Packages that use Parameter
Package
Description
-
Uses of Parameter in cz.cvut.kbss.jopa.model
Methods in cz.cvut.kbss.jopa.model with parameters of type ParameterModifier and TypeMethodDescriptionTypedQueryImpl.setParameter
(Parameter<String> parameter, String value, String language) <T> TypedQuery<X>
TypedQueryImpl.setParameter
(Parameter<T> parameter, T value) <T> TypedQuery<X>
TypedQueryImpl.setUntypedParameter
(Parameter<T> parameter, T value) -
Uses of Parameter in cz.cvut.kbss.jopa.model.query
Methods in cz.cvut.kbss.jopa.model.query that return ParameterModifier and TypeMethodDescriptionParameter<?>
Query.getParameter
(int position) Gets the parameter object corresponding to the declared positional parameter with the given position.Parameter<?>
Query.getParameter
(String name) Gets the parameter object corresponding to the declared parameter of the given name.Methods in cz.cvut.kbss.jopa.model.query that return types with arguments of type ParameterModifier and TypeMethodDescriptionQuery.getParameters()
Gets the parameter objects corresponding to the declared parameters of the query.Methods in cz.cvut.kbss.jopa.model.query with parameters of type ParameterModifier and TypeMethodDescription<T> T
Query.getParameterValue
(Parameter<T> parameter) Returns the input value bound to the parameter.boolean
Returns a boolean indicating whether a value has been bound to the parameter.Query.setParameter
(Parameter<String> parameter, String value, String language) Binds the value of a String Parameter.<T> Query
Query.setParameter
(Parameter<T> parameter, T value) Binds the value of a Parameter object.TypedQuery.setParameter
(Parameter<String> parameter, String value, String language) Binds the value of a String Parameter.<T> TypedQuery<X>
TypedQuery.setParameter
(Parameter<T> parameter, T value) Binds the value of a Parameter object.<T> Query
Query.setUntypedParameter
(Parameter<T> parameter, T value) Binds the value of a Parameter object.<T> TypedQuery<X>
TypedQuery.setUntypedParameter
(Parameter<T> parameter, T value) Binds the value of a Parameter object. -
Uses of Parameter in cz.cvut.kbss.jopa.model.query.criteria
Subinterfaces of Parameter in cz.cvut.kbss.jopa.model.query.criteria -
Uses of Parameter in cz.cvut.kbss.jopa.query
Classes in cz.cvut.kbss.jopa.query that implement ParameterMethods in cz.cvut.kbss.jopa.query that return ParameterModifier and TypeMethodDescriptionParameter<?>
QueryHolder.getParameter
(int position) Gets a parameter with the specified position.Parameter<?>
QueryHolder.getParameter
(String name) Gets a parameter with the specified name.Methods in cz.cvut.kbss.jopa.query that return types with arguments of type ParameterModifier and TypeMethodDescriptionQueryHolder.getParameters()
Gets a collection of parameters in the query.Methods in cz.cvut.kbss.jopa.query with parameters of type ParameterModifier and TypeMethodDescriptionvoid
QueryHolder.clearParameter
(Parameter<?> parameter) Clears any previously set value of the specified parameter.QueryHolder.getParameterValue
(Parameter<?> parameter) Gets value bound to the specified parameter.<T> void
QueryHolder.setParameter
(Parameter<T> parameter, Object value) Sets value of the specified parameter in the query.<T> void
QueryHolder.setParameter
(Parameter<T> parameter, String value, String language) Sets value of the specified parameter in the query.<T> void
QueryHolder.setUntypedParameter
(Parameter<T> parameter, Object value) Sets value of the specified parameter in the query. -
Uses of Parameter in cz.cvut.kbss.jopa.query.criteria.expressions
Classes in cz.cvut.kbss.jopa.query.criteria.expressions that implement Parameter -
Uses of Parameter in cz.cvut.kbss.jopa.query.sparql
Classes in cz.cvut.kbss.jopa.query.sparql that implement ParameterModifier and TypeClassDescriptionclass
Query parameter represented by ANTLR tokens in the query string.Methods in cz.cvut.kbss.jopa.query.sparql that return ParameterModifier and TypeMethodDescriptionParameter<?>
TokenStreamSparqlQueryHolder.getParameter
(int position) Methods in cz.cvut.kbss.jopa.query.sparql that return types with arguments of type ParameterMethods in cz.cvut.kbss.jopa.query.sparql with parameters of type ParameterModifier and TypeMethodDescriptionvoid
TokenStreamSparqlQueryHolder.clearParameter
(Parameter<?> parameter) TokenStreamSparqlQueryHolder.getParameterValue
(Parameter<?> parameter) <T> void
TokenStreamSparqlQueryHolder.setParameter
(Parameter<T> parameter, Object value) <T> void
TokenStreamSparqlQueryHolder.setParameter
(Parameter<T> parameter, String value, String language) <T> void
TokenStreamSparqlQueryHolder.setUntypedParameter
(Parameter<T> parameter, Object value)