Class GeoprocessingLong

java.lang.Object
com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingParameter
com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingLong

public class GeoprocessingLong extends GeoprocessingParameter
Corresponds to GPLong parameter type in the service REST specification. The range of values corresponds to a 32 bit integer from -2,147,483,648 to 2,147,483,647.
Since:
100.0.0
  • Constructor Details

    • GeoprocessingLong

      public GeoprocessingLong()
      Creates an instance. The value defaults to 0.
      Since:
      100.0.0
    • GeoprocessingLong

      public GeoprocessingLong(int value)
      Creates an instance.
      Parameters:
      value - the value of the parameter
  • Method Details

    • getValue

      public int getValue()
      Returns the value.
      Returns:
      the value
      Since:
      100.0.0
    • setValue

      public void setValue(int value)
      Sets the value.
      Parameters:
      value - the value to set
      Since:
      100.0.0