Package ca.uhn.fhir.rest.gclient
Class StringClientParam
- java.lang.Object
-
- ca.uhn.fhir.rest.gclient.StringClientParam
-
- All Implemented Interfaces:
IParam
public class StringClientParam extends Object implements IParam
- Author:
- james
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceStringClientParam.IStringMatch
-
Constructor Summary
Constructors Constructor Description StringClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringClientParam.IStringMatchcontains()The string contains given valueStringgetParamName()Returns the name of this parameterICriterion<?>isMissing(boolean theMissing)Sets the:missingqualifier for this parameter.StringClientParam.IStringMatchmatches()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".StringClientParam.IStringMatchmatchesExactly()The string matches exactly the given value
-
-
-
Constructor Detail
-
StringClientParam
public StringClientParam(String theParamName)
-
-
Method Detail
-
getParamName
public String getParamName()
Description copied from interface:IParamReturns the name of this parameter- Specified by:
getParamNamein interfaceIParam
-
matches
public StringClientParam.IStringMatch 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
public StringClientParam.IStringMatch matchesExactly()
The string matches exactly the given value
-
contains
public StringClientParam.IStringMatch contains()
The string contains given value
-
isMissing
public ICriterion<?> isMissing(boolean theMissing)
Description copied from interface:IParamSets the:missingqualifier for this parameter. Set this totrueto indicate that the server should return resources with this valuepopulated
. Set this tofalseto indicate that the server should return resources with this value missing.
-
-