Enum CliLogLevel

    • Enum Constant Detail

      • DEBUG

        public static final CliLogLevel DEBUG
        Debug information with details for developers and to get more details in case of problems or errors.
      • INFO

        public static final CliLogLevel INFO
        General information for end-users to get helpful feedback about what is going on.
      • WARNING

        public static final CliLogLevel WARNING
        Warning information if something is not as expected but does not prevent further processing.
      • ERROR

        public static final CliLogLevel ERROR
        Error information if something went wrong and processing typically failed and has to be aborted.
    • Method Detail

      • values

        public static CliLogLevel[] 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 (CliLogLevel c : CliLogLevel.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static CliLogLevel 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