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