Package rabbit.util

Examples of rabbit.util.Level


    /** Get the actual error level from the given String.
     * @param errorlevel the String to translate.
     * @return the errorlevel suitable for the given String.
     */
    private Level getErrorLevel (String errorlevel) {
  Level l = Enum.valueOf (Level.class, errorlevel.toUpperCase ());
  return l;
    }
View Full Code Here

TOP

Related Classes of rabbit.util.Level

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.