Mercurial > dive4elements > river
view flys-backend/src/main/java/de/intevation/flys/model/MinMaxWQ.java @ 5622:b28a6d05e969
Add a new mechanism in mapfish print call to add arbitary data maps
Data properties are identified by starting with mapfish-data
and they are then split in info value pairs where info
can be the description of the information and value the value
of the information to be transported in the data map.
author | Andre Heinecke <aheinecke@intevation.de> |
---|---|
date | Tue, 09 Apr 2013 19:04:32 +0200 |
parents | 9f92c42b7a81 |
children |
line wrap: on
line source
package de.intevation.flys.model; import java.io.Serializable; import java.math.BigDecimal; /** * Represents minmimum and maximum values for W and Q */ public class MinMaxWQ implements Serializable { private BigDecimal minw; private BigDecimal maxw; private BigDecimal minq; private BigDecimal maxq; /** * Default constuctor to indecate that no min and max w and q values * are available */ public MinMaxWQ() { } /** * Constructor for a new MinMaxWQ value * * @param minw Mimimim W * @param maxw Maximum W * @param minq Mimimim Q * @param maxq Maximum Q */ public MinMaxWQ( BigDecimal minw, BigDecimal maxw, BigDecimal minq, BigDecimal maxq) { this.minw = minw; this.maxw = maxw; this.minq = minq; this.maxq = maxq; } public BigDecimal getMinW() { return this.minw; } public BigDecimal getMaxW() { return this.maxw; } public BigDecimal getMinQ() { return this.minq; } public BigDecimal getMaxQ() { return this.maxq; } }