Package org.infinispan.query.dsl
Interface ParameterContext<Context extends ParameterContext>
- All Known Subinterfaces:
Query<T>
Deprecated.
- Since:
- 9.0
- Author:
- anistor@redhat.com
-
Method Summary
Modifier and TypeMethodDescriptionDeprecated.Returns the named parameters Map.setParameter
(String paramName, Object paramValue) Deprecated.Sets the value of a named parameter.setParameters
(Map<String, Object> paramValues) Deprecated.Sets multiple named parameters at once.
-
Method Details
-
getParameters
Deprecated.Returns the named parameters Map.- Returns:
- the named parameters (unmodifiable) or
null
if the query does not have parameters
-
setParameter
Deprecated.Sets the value of a named parameter.- Parameters:
paramName
- the parameters name (non-empty and not null)paramValue
- a non-null value- Returns:
- itself
-
setParameters
Deprecated.Sets multiple named parameters at once. Parameters names cannot be empty ornull
. Parameter values must not benull
.- Parameters:
paramValues
- a Map of parameters- Returns:
- itself
-
QueryBuilder
.