
Package ca.uhn.fhir.rest.gclient
Class DateClientParam
- java.lang.Object
-
- ca.uhn.fhir.rest.gclient.DateClientParam
-
- All Implemented Interfaces:
IParam
public class DateClientParam extends Object implements IParam
Date parameter type for use in fluent client interfaces
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interface
DateClientParam.IDateCriterion
static interface
DateClientParam.IDateSpecifier
-
Constructor Summary
Constructors Constructor Description DateClientParam(String theParamName)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DateClientParam.IDateSpecifier
after()
DateClientParam.IDateSpecifier
afterOrEquals()
DateClientParam.IDateSpecifier
before()
DateClientParam.IDateSpecifier
beforeOrEquals()
DateClientParam.IDateSpecifier
exactly()
String
getParamName()
Returns the name of this parameterICriterion<?>
isMissing(boolean theMissing)
Sets the:missing
qualifier for this parameter.
-
-
-
Constructor Detail
-
DateClientParam
public DateClientParam(String theParamName)
-
-
Method Detail
-
getParamName
public String getParamName()
Description copied from interface:IParam
Returns the name of this parameter- Specified by:
getParamName
in interfaceIParam
-
after
public DateClientParam.IDateSpecifier after()
-
afterOrEquals
public DateClientParam.IDateSpecifier afterOrEquals()
-
before
public DateClientParam.IDateSpecifier before()
-
beforeOrEquals
public DateClientParam.IDateSpecifier beforeOrEquals()
-
exactly
public DateClientParam.IDateSpecifier exactly()
-
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.
-
-