R2StaticData.java [src/java/d/dataNodes] Revision: default  Date:
/*
 * $Id$
 *
 * This file is part of the Cloud Services Integration Platform (CSIP),
 * a Model-as-a-Service framework, API, and application suite.
 *
 * 2012-2017, OMSLab, Colorado State University.
 *
 * OMSLab licenses this file to you under the MIT license.
 * See the LICENSE file in the project root for more information.
 */
package d.dataNodes;

import java.util.HashMap;

/**
 *
 * @author brad
 */
public class R2StaticData {
    
    // I guess this is considered an anonymous class
    public static HashMap<String,String> Rusle2Hydrologic = new HashMap<String,String>(){
            {
            put("A", "HYDROLOGIC_CLASS_LOW_RO");
            put("B", "HYDROLOGIC_CLASS_MOD_LOW_RO");
            put("C","HYDROLOGIC_CLASS_MOD_HIGH_RO");
            put("D","HYDROLOGIC_CLASS_HIGH_RO");
        }
    };
}