Package ca.uhn.fhir.rest.gclient
Interface UriClientParam.IUriMatch
-
- Enclosing class:
- UriClientParam
public static interface UriClientParam.IUriMatch
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ICriterion<UriClientParam>value(StringDt theValue)Requests that resources be returned which match the given valueICriterion<UriClientParam>value(String theValue)Requests that resources be returned which match the given valueICriterion<?>values(String... theValues)Requests that resources be returned which match ANY of the given values (this is an OR search).ICriterion<UriClientParam>values(List<String> theValues)Requests that resources be returned which match ANY of the given values (this is an OR search).
-
-
-
Method Detail
-
value
ICriterion<UriClientParam> value(String theValue)
Requests that resources be returned which match the given value
-
values
ICriterion<UriClientParam> values(List<String> theValues)
Requests that resources be returned which match ANY of the given values (this is an OR search). Note that to specify an AND search, simply add a subsequentwherecriteria with the same parameter.
-
value
ICriterion<UriClientParam> value(StringDt theValue)
Requests that resources be returned which match the given value
-
values
ICriterion<?> values(String... theValues)
Requests that resources be returned which match ANY of the given values (this is an OR search). Note that to specify an AND search, simply add a subsequentwherecriteria with the same parameter.
-
-