java.lang.Object
com.esri.arcgisruntime.raster.RasterFunctionArguments
Represents arguments associated with a raster function.
- Since:
- 100.0.0
-
Method Summary
Modifier and TypeMethodDescriptionGets names of all arguments.Gets a list of raster names associated with the corresponding raster function.voidsetArgument(String argumentName, String argumentValue) Sets the argument value for the given argument name.voidSets the raster for the provided raster name.
-
Method Details
-
getArgumentNames
Gets names of all arguments.- Returns:
- an unmodifiable list containing names of all arguments. This will throw an
UnsupportedOperationExceptionif an attempt is made to modify it - Since:
- 100.0.0
-
setArgument
Sets the argument value for the given argument name.- Parameters:
argumentName- argument nameargumentValue- argument value- Throws:
IllegalArgumentException- if argumentName is null or empty- Since:
- 100.0.0
-
getRasterNames
Gets a list of raster names associated with the corresponding raster function.- Returns:
- an unmodifiable list of raster names. This will throw an
UnsupportedOperationExceptionif an attempt is made to modify it - Since:
- 100.0.0
-
setRaster
Sets the raster for the provided raster name.- Parameters:
rasterName- name of the raster to setraster- raster- Throws:
IllegalArgumentException- if rasterName is null or emptyIllegalArgumentException- if raster is null- Since:
- 100.0.0
-