
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 interface
StringClientParam.IStringMatch
-
Constructor Summary
Constructors Constructor Description StringClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description StringClientParam.IStringMatch
contains()
The string contains given valueString
getParamName()
Returns the name of this parameterICriterion<?>
isMissing(boolean theMissing)
Sets the:missing
qualifier for this parameter.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".StringClientParam.IStringMatch
matchesExactly()
The string matches exactly the given value
-
-
-
Constructor Detail
-
StringClientParam
public StringClientParam(String theParamName)
-
-
Method Detail
-
getParamName
public String getParamName()
Description copied from interface:IParam
Returns the name of this parameter- Specified by:
getParamName
in 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:IParam
Sets the:missing
qualifier for this parameter. Set this totrue
to indicate that the server should return resources with this valuepopulated
. Set this tofalse
to indicate that the server should return resources with this value missing.
-
-