Class GeoprocessingDate
- java.lang.Object
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingParameter
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingDate
-
public final class GeoprocessingDate extends GeoprocessingParameter
Corresponds to GPDate parameter type in the service REST specification.- Since:
- 100.0.0
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingParameter
GeoprocessingParameter.Type
-
-
Constructor Summary
Constructors Constructor Description GeoprocessingDate()
Creates an instance.GeoprocessingDate(Calendar value)
Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Calendar
getValue()
Returns the value.void
setValue(Calendar value)
Sets the value.
-
-
-
Constructor Detail
-
GeoprocessingDate
public GeoprocessingDate()
Creates an instance. The value defaults to the epoch.- Since:
- 100.0.0
-
GeoprocessingDate
public GeoprocessingDate(Calendar value)
Creates an instance.- Parameters:
value
- the value of the parameter- Throws:
IllegalArgumentException
- if value is null- Since:
- 100.0.0
-
-
Method Detail
-
getValue
public Calendar getValue()
Returns the value.- Returns:
- the value
- Since:
- 100.0.0
-
setValue
public void setValue(Calendar value)
Sets the value.- Parameters:
value
- the value to set- Throws:
IllegalArgumentException
- if value is null- Since:
- 100.0.0
-
-