Class GeoprocessingTaskInfo
- java.lang.Object
-
- com.esri.arcgisruntime.tasks.geoprocessing.GeoprocessingTaskInfo
-
public final class GeoprocessingTaskInfo extends java.lang.ObjectGeoprocessingTaskInfo contains information on aGeoprocessingTask. GeoprocessingTaskInfo is retrieved from a loaded GeoprocessingTask instance by callingGeoprocessingTask.getGeoprocessingTaskInfo(). GeoprocessingTaskInfo contains the name and description of the geoprocessing task along with execution type and descriptions of all the task's parameters.- Since:
- 100.1.0
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCategory()Returns the geoprocessing task's category.java.lang.StringgetDescription()Returns the geoprocessing task's description.java.lang.StringgetDisplayName()Returns the geoprocessing task's display name.GeoprocessingParameters.ExecutionTypegetExecutionType()Returns the geoprocessing task's execution type.java.lang.StringgetHelpUrl()Returns the geoprocessing task's help URL.java.lang.StringgetName()Returns the geoprocessing task's name.java.util.List<GeoprocessingParameterInfo>getParameterInfos()Returns an unmodifiable list of geoprocessing task parameters information instances.java.lang.StringgetUrl()Returns the geoprocessing task URL.
-
-
-
Method Detail
-
getCategory
public java.lang.String getCategory()
Returns the geoprocessing task's category.- Returns:
- the category
- Since:
- 100.1.0
-
getDescription
public java.lang.String getDescription()
Returns the geoprocessing task's description.- Returns:
- the description
- Since:
- 100.1.0
-
getDisplayName
public java.lang.String getDisplayName()
Returns the geoprocessing task's display name.- Returns:
- the display name
- Since:
- 100.1.0
-
getExecutionType
public GeoprocessingParameters.ExecutionType getExecutionType()
Returns the geoprocessing task's execution type.- Returns:
- the execution type
- Since:
- 100.1.0
-
getHelpUrl
public java.lang.String getHelpUrl()
Returns the geoprocessing task's help URL.- Returns:
- the help URL
- Since:
- 100.1.0
-
getName
public java.lang.String getName()
Returns the geoprocessing task's name.- Returns:
- the name
- Since:
- 100.1.0
-
getParameterInfos
public java.util.List<GeoprocessingParameterInfo> getParameterInfos()
Returns an unmodifiable list of geoprocessing task parameters information instances.- Returns:
- the unmodifiable list of parameter information instances
- Since:
- 100.1.0
-
getUrl
public java.lang.String getUrl()
Returns the geoprocessing task URL.- Returns:
- the URL
- Since:
- 100.1.0
-
-