All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ka.cf4j.23.0.source-code.cf-standard-names.xsl Maven / Gradle / Ivy







package com.axiomalaska.cf4j;

import java.util.Collection;
import java.util.ArrayList;

/**
 * CF Standard Names, version . 
 * See <a href="http://cf-pcmdi.llnl.gov/documents/cf-standard-names/">http://cf-pcmdi.llnl.gov/documents/cf-standard-names/</a>. 
 */
public class CFStandardNames {
    private static Collection<CFStandardName> allNames = new ArrayList<CFStandardName>();
    
    
      
    /**  */
    
    public static final CFStandardName  = createCFStandardName(
         ""
        ,
           ""
           null 
         
        ,
           ""
           null
         
        ,
           ""
           null
         
        ,
           ""
           null
         
    );
    

    private static CFStandardName createCFStandardName( String name, String canonicalUnits,
        String description, String grib, String amip ){
        CFStandardName cfName = new CFStandardName( name, canonicalUnits, description, grib, amip );
        allNames.add( cfName ); 
        return cfName;
    }

    public static Collection<CFStandardName> getAllNames(){
        return allNames;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy