
Package ca.uhn.fhir.rest.gclient
Class UriClientParam
- java.lang.Object
-
- ca.uhn.fhir.rest.gclient.UriClientParam
-
- All Implemented Interfaces:
IParam
public class UriClientParam extends Object implements IParam
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
UriClientParam.IUriMatch
-
Constructor Summary
Constructors Constructor Description UriClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description String
getParamName()
Returns the name of this parameterICriterion<?>
isMissing(boolean theMissing)
Sets the:missing
qualifier for this parameter.UriClientParam.IUriMatch
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".UriClientParam.IUriMatch
matches(String theValue)
Deprecated.theValue does not do anything, usematches()
instead
-
-
-
Constructor Detail
-
UriClientParam
public UriClientParam(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
@Deprecated public UriClientParam.IUriMatch matches(String theValue)
Deprecated.theValue does not do anything, usematches()
insteadThe 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".- Parameters:
theValue
- THIS PARAMETER DOES NOT DO ANYTHING - This method was added by accident
-
matches
public UriClientParam.IUriMatch 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".
-
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.
-
-