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 interfaceUriClientParam.IUriMatch
-
Constructor Summary
Constructors Constructor Description UriClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description StringgetParamName()Returns the name of this parameterICriterion<?>isMissing(boolean theMissing)Sets the:missingqualifier for this parameter.UriClientParam.IUriMatchmatches()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.IUriMatchmatches(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:IParamReturns the name of this parameter- Specified by:
getParamNamein 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: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.
-
-