package org.androad.sys.ors.adt.lus; /** * @author Nicolas Gramlich * @since 23:20:45 - 23.06.2009 */ public class CountrySubdivisionRegistry { // =========================================================== // Constants // =========================================================== // =========================================================== // Fields // =========================================================== // =========================================================== // Constructors // =========================================================== // =========================================================== // Getter & Setter // =========================================================== // =========================================================== // Methods from SuperClass/Interfaces // =========================================================== // =========================================================== // Methods // =========================================================== public static CountrySubdivisionsUS[] get(final Country pCountry){ if(pCountry == null) { return null; } switch(pCountry){ case USA: return CountrySubdivisionsUS.values(); default: return null; } } // =========================================================== // Inner and Anonymous Classes // =========================================================== }