Class GeoprocessingString
- java.lang.Object
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingParameter
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingString
-
public final class GeoprocessingString extends GeoprocessingParameter
Corresponds to GPString 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 GeoprocessingString()
Creates an instance.GeoprocessingString(String value)
Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getValue()
Returns the value.void
setValue(String value)
Sets the value.
-
-
-
Constructor Detail
-
GeoprocessingString
public GeoprocessingString()
Creates an instance. The value defaults to empty string.- Since:
- 100.0.0
-
GeoprocessingString
public GeoprocessingString(String 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 String getValue()
Returns the value.- Returns:
- the value
- Since:
- 100.0.0
-
setValue
public void setValue(String value)
Sets the value.- Parameters:
value
- the value to set- Throws:
IllegalArgumentException
- if value is null- Since:
- 100.0.0
-
-