Enum Class ThermalLog.LogLevel

java.lang.Object
java.lang.Enum<ThermalLog.LogLevel>
com.flir.thermalsdk.log.ThermalLog.LogLevel
All Implemented Interfaces:
Serializable, Comparable<ThermalLog.LogLevel>, Constable
Enclosing class:
ThermalLog

public static enum ThermalLog.LogLevel extends Enum<ThermalLog.LogLevel>
Logging levels.
  • Enum Constant Details

    • NONE

      public static final ThermalLog.LogLevel NONE
      Defines no logging. use for disable logging
    • ERROR

      public static final ThermalLog.LogLevel ERROR
      Defines ERROR messages logging.
    • WARNING

      public static final ThermalLog.LogLevel WARNING
      Defines ERROR & WARNING messages logging.
    • INFO

      public static final ThermalLog.LogLevel INFO
      Defines ERROR & WARNING & INFO messages logging.
    • DEBUG

      public static final ThermalLog.LogLevel DEBUG
      Defines ERROR & WARNING & INFO & DEBUG messages logging.
    • VERBOSE

      public static final ThermalLog.LogLevel VERBOSE
      Defines ERROR & WARNING & INFO & DEBUG & VERBOSE messages logging.
  • Method Details

    • values

      public static ThermalLog.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 ThermalLog.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