Package com.ibm.fhir.cql.engine.retrieve
Class SearchParameterMap
- java.lang.Object
-
- com.ibm.fhir.cql.engine.retrieve.SearchParameterMap
-
- All Implemented Interfaces:
Serializable
public class SearchParameterMap extends Object implements Serializable
This is a helper class that encapsulates a set of query parameters for a FHIR REST API call including common parameters such as _count.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SearchParameterMap()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsKey(String key)Integercount()voidcount(Integer count)Set<Map.Entry<String,List<List<? extends IQueryParameter>>>>entrySet()booleanisEmpty()Set<String>keySet()voidput(String key, IQueryParameter param)voidput(String key, IQueryParameterAnd<? extends IQueryParameterOr<?>> andParam)voidput(String key, IQueryParameterOr<? extends IQueryParameter> orParam)List<List<? extends IQueryParameter>>remove(String theName)StringtoString()
-
-
-
Method Detail
-
count
public void count(Integer count)
-
count
public Integer count()
-
put
public void put(String key, IQueryParameterOr<? extends IQueryParameter> orParam)
-
put
public void put(String key, IQueryParameterAnd<? extends IQueryParameterOr<?>> andParam)
-
put
public void put(String key, IQueryParameter param)
-
containsKey
public boolean containsKey(String key)
-
isEmpty
public boolean isEmpty()
-
remove
public List<List<? extends IQueryParameter>> remove(String theName)
-
-