Package info.jtrac.domain.ColumnHeading

Examples of info.jtrac.domain.ColumnHeading.Name


   
    /**
     * Resolve a String to a valid enum value for ColumnHeading.Name
     */
    private static Name convertToName(String text) {
        Name n = NAMES_MAP.get(text);
        if (n == null) {
            throw new RuntimeException("Bad name " + text);
        }
        return n;
    }
View Full Code Here

TOP

Related Classes of info.jtrac.domain.ColumnHeading.Name

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.