Enum LogLevel

    • Enum Constant Detail

      • Trace

        public static final LogLevel Trace
        Trace level logging
      • Debug

        public static final LogLevel Debug
        Debug level logging
      • Info

        public static final LogLevel Info
        Information level logging
      • Warn

        public static final LogLevel Warn
        Warning level logging
      • Error

        public static final LogLevel Error
        Error level logging
      • Fatal

        public static final LogLevel Fatal
        Fatal level logging
      • None

        public static final LogLevel None
        No logging
    • Method Detail

      • values

        public static LogLevel[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (LogLevel c : LogLevel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static LogLevel valueOf​(String name)
        Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
        Parameters:
        name - the name of the enum constant to be returned.
        Returns:
        the enum constant with the specified name
        Throws:
        IllegalArgumentException - if this enum type has no constant with the specified name
        NullPointerException - if the argument is null
      • valueOfCode

        public static LogLevel valueOfCode​(String code)
        Helper function to return the LogLevel represented by code. code must be a single character. If code is null, longer than one character, empty, or not a valid code then this method will return null.
        Parameters:
        code - A string with one character that is one of the codes for LogLevel
        Returns:
        The LogLevel corresponding to code, or null, if code is null, longer than one character, or not a valid code
      • safeValueOf

        public static LogLevel safeValueOf​(String value)
        Helper function to return the LogLevel represented by value. If value is null, or not a valid LogLevel enumeration then this method will return null.

        The main difference between this method and valueOf(String), is that this method will return null when passed an invalid value, valueOf(String) will throw an IllegalArgumentException.

        Parameters:
        value - The string value that corresponds to the requested enumeration value
        Returns:
        The LogLevel corresponding to value, or null, if value is null, or not a valid enumeration
        See Also:
        valueOf(String)
      • valueOf

        public static LogLevel valueOf​(Character code)
        Helper function to return the LogLevel represented by code. If code is null, or not a valid LogLevel code then this method will return null.
        Parameters:
        code - Character that is one of the codes for HandlerAction
        Returns:
        The LogLevel corresponding to code, or null, if code is null, or not a valid code
      • valueOf

        public static LogLevel valueOf​(char code)
        Helper function to return the LogLevel represented by code. If code is not a valid LogLevel code then this method will return null.
        Parameters:
        code - char that is one of the codes for HandlerAction
        Returns:
        The LogLevel corresponding to code, or null, if code is not a valid code