Class MinMaxValue
- java.lang.Object
-
- com.itextpdf.layout.properties.grid.TemplateValue
-
- com.itextpdf.layout.properties.grid.GridValue
-
- com.itextpdf.layout.properties.grid.FunctionValue
-
- com.itextpdf.layout.properties.grid.MinMaxValue
-
public class MinMaxValue extends FunctionValue
Represents minmax function template value.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.itextpdf.layout.properties.grid.TemplateValue
TemplateValue.ValueType
-
-
Field Summary
Fields Modifier and Type Field Description private BreadthValue
max
private BreadthValue
min
-
Fields inherited from class com.itextpdf.layout.properties.grid.TemplateValue
type
-
-
Constructor Summary
Constructors Constructor Description MinMaxValue(BreadthValue min, BreadthValue max)
Create a minmax function with a given values.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BreadthValue
getMax()
Gets max template valueBreadthValue
getMin()
Gets min template value-
Methods inherited from class com.itextpdf.layout.properties.grid.TemplateValue
getType
-
-
-
-
Field Detail
-
min
private final BreadthValue min
-
max
private final BreadthValue max
-
-
Constructor Detail
-
MinMaxValue
public MinMaxValue(BreadthValue min, BreadthValue max)
Create a minmax function with a given values.- Parameters:
min
- min value of a trackmax
- max value of a track
-
-
Method Detail
-
getMin
public BreadthValue getMin()
Gets min template value- Returns:
BreadthValue
instance
-
getMax
public BreadthValue getMax()
Gets max template value- Returns:
BreadthValue
instance
-
-