Package com.esri.arcgisruntime.raster
Class MinMaxStretchParameters
- java.lang.Object
-
- com.esri.arcgisruntime.raster.MinMaxStretchParameters
-
- All Implemented Interfaces:
StretchParameters
public final class MinMaxStretchParameters extends java.lang.Object implements StretchParameters
Represents a minimum/maximum stretch parameters.- Since:
- 100.0.0
-
-
Constructor Summary
Constructors Constructor Description MinMaxStretchParameters(java.util.List<java.lang.Double> minValues, java.util.List<java.lang.Double> maxValues)
Creates a new MinMaxStretchParameters with the specified minimum and maximum values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<java.lang.Double>
getMaxValues()
Gets the maximum values.java.util.List<java.lang.Double>
getMinValues()
Gets the minimum values.
-
-
-
Constructor Detail
-
MinMaxStretchParameters
public MinMaxStretchParameters(java.util.List<java.lang.Double> minValues, java.util.List<java.lang.Double> maxValues)
Creates a new MinMaxStretchParameters with the specified minimum and maximum values.- Parameters:
minValues
- minimum valuesmaxValues
- maximum values- Throws:
java.lang.IllegalArgumentException
- if minValues or maxValues is null- Since:
- 100.0.0
-
-