Enum GeoprocessingParameters.ExecutionType
- java.lang.Object
-
- java.lang.Enum<GeoprocessingParameters.ExecutionType>
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingParameters.ExecutionType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GeoprocessingParameters.ExecutionType>
- Enclosing class:
- GeoprocessingParameters
public static enum GeoprocessingParameters.ExecutionType extends java.lang.Enum<GeoprocessingParameters.ExecutionType>
The list of geoprocessing execution types. This is used to indicate the geoprocessing service's execution type. Every geoprocessing service is exposed either as a submit or execute operation on the ArcGIS Server and the execution type needs to match the used service.- Since:
- 100.0.0
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ASYNCHRONOUS_SUBMIT
Submit geoprocessing job asynchronously.SYNCHRONOUS_EXECUTE
Execute geoprocessing job synchronously.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static GeoprocessingParameters.ExecutionType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GeoprocessingParameters.ExecutionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ASYNCHRONOUS_SUBMIT
public static final GeoprocessingParameters.ExecutionType ASYNCHRONOUS_SUBMIT
Submit geoprocessing job asynchronously.- Since:
- 100.0.0
-
SYNCHRONOUS_EXECUTE
public static final GeoprocessingParameters.ExecutionType SYNCHRONOUS_EXECUTE
Execute geoprocessing job synchronously.- Since:
- 100.0.0
-
-
Method Detail
-
values
public static GeoprocessingParameters.ExecutionType[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (GeoprocessingParameters.ExecutionType c : GeoprocessingParameters.ExecutionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GeoprocessingParameters.ExecutionType valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-