Package ca.uhn.fhir.rest.gclient
Interface IBaseQuery<T extends IBaseQuery<?>>
-
- All Known Subinterfaces:
ICreateWithQuery,ICreateWithQueryTyped,IDeleteWithQuery,IDeleteWithQueryTyped,IPatchWithQuery,IPatchWithQueryTyped,IQuery<Y>,IUpdateWithQuery,IUpdateWithQueryTyped
public interface IBaseQuery<T extends IBaseQuery<?>>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tand(ICriterion<?> theCriterion)Add a search parameter to the query.Twhere(ICriterion<?> theCriterion)Add a search parameter to the query.Twhere(Map<String,List<IQueryParameterType>> theCriterion)Add a set of search parameters to the query.TwhereMap(Map<String,List<String>> theRawMap)Add a set of search parameters to the query.
-
-
-
Method Detail
-
and
T and(ICriterion<?> theCriterion)
Add a search parameter to the query.Note that this method is a synonym for
where(ICriterion), and is only here to make fluent queries read more naturally.
-
where
T where(Map<String,List<IQueryParameterType>> theCriterion)
Add a set of search parameters to the query.
-
where
T where(ICriterion<?> theCriterion)
Add a search parameter to the query.
-
-