Metadata.java [src/java/utils] Revision: default  Date:
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package utils;

/**
 *
 * @author od
 */
public class Metadata {

    boolean norm;
    double min;
    double max;
    double norm_min;
    double norm_max;

    public Metadata(boolean norm, double min, double max, double norm_min, double norm_max) {
        this.norm = norm;
        this.min = min;
        this.max = max;
        this.norm_min = norm_min;
        this.norm_max = norm_max;
    }


    public boolean getNorm() {
        return norm;
    }


    public double getMin() {
        return min;
    }


    public double getMax() {
        return max;
    }

    public double getNormMin() {
        return norm_min;
    }

    public double getNormMax() {
        return norm_max;
    }

}