java.lang.Object
com.esri.arcgisruntime.raster.RasterFunctionArguments
Represents arguments associated with a raster function.
- Since:
- 100.0.0
- 
Method SummaryModifier 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- 
getArgumentNamesGets 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
 
- 
setArgumentSets the argument value for the given argument name.- Parameters:
- argumentName- argument name
- argumentValue- argument value
- Throws:
- IllegalArgumentException- if argumentName is null or empty
- Since:
- 100.0.0
 
- 
getRasterNamesGets 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
 
- 
setRasterSets the raster for the provided raster name.- Parameters:
- rasterName- name of the raster to set
- raster- raster
- Throws:
- IllegalArgumentException- if rasterName is null or empty
- IllegalArgumentException- if raster is null
- Since:
- 100.0.0
 
 
-