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
  • Constructor Details

    • 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 Details

    • 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