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