Enum Class LogLevel

java.lang.Object
java.lang.Enum<LogLevel>
com.sparsity.sparksee.gdb.LogLevel
All Implemented Interfaces:
Serializable, Comparable<LogLevel>, Constable

public enum LogLevel extends Enum<LogLevel>
Log level enumeration.

Log level priority order is as follows, from minimum to maximum log information: Off (log is disabled), Severe, Warning, Info, Config, Fine, Debug.

Author:
Sparsity Technologies http://www.sparsity-technologies.com
  • Enum Constant Details

    • Off

      public static final LogLevel Off
      Disable log.

      Disable log.

    • Severe

      public static final LogLevel Severe
      Severe log level.

      Severe log level.

    • Warning

      public static final LogLevel Warning
      Warning log level.

      Warning log level.

    • Info

      public static final LogLevel Info
      Info log level.

      Info log level.

    • Config

      public static final LogLevel Config
      Config log level.

      Config log level.

    • Fine

      public static final LogLevel Fine
      Fine log level.

      Fine log level.

    • Debug

      public static final LogLevel Debug
      Debug log level.

      Debug log level.

  • Method Details

    • values

      public static LogLevel[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static LogLevel valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null