Package ca.uhn.fhir.rest.gclient
Class StringClientParam
java.lang.Object
ca.uhn.fhir.rest.gclient.StringClientParam
- All Implemented Interfaces:
IParam
- Author:
- james
-
Nested Class Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncontains()
The string contains given valueReturns the name of this parameterICriterion
<?> isMissing
(boolean theMissing) Sets the:missing
qualifier for this parameter.matches()
The string matches the given value (servers will often, but are not required to) implement this as a left match, meaning that a value of "smi" would match "smi" and "smith".The string matches exactly the given value
-
Constructor Details
-
StringClientParam
-
-
Method Details
-
getParamName
Description copied from interface:IParam
Returns the name of this parameter- Specified by:
getParamName
in interfaceIParam
-
matches
The string matches the given value (servers will often, but are not required to) implement this as a left match, meaning that a value of "smi" would match "smi" and "smith". -
matchesExactly
The string matches exactly the given value -
contains
The string contains given value -
isMissing
Description copied from interface:IParam
Sets the:missing
qualifier for this parameter. Set this totrue
to indicate that the server should return resources with this valuemissing
. Set this tofalse
to indicate that the server should return resources with this value populated.
-