OutfallLoadingSummary.java [src/SwmmReportObjects] 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 SwmmReportObjects;

/**
 *
 * @author Lucas Yaege
 */
public class OutfallLoadingSummary {

    public String outfall;
    public double flowFreqPcnt;
    public double avgFlowCFS;
    public double maxFlowCFS;
    public double totalVolumeMG;

    @Override
    public String toString()
    {
        return outfall + "\t" + flowFreqPcnt + "\t" + avgFlowCFS + "\t" + maxFlowCFS + "\t" + totalVolumeMG;
    }

}