Enum Class LogVerbosity

java.lang.Object
java.lang.Enum<LogVerbosity>
io.openems.edge.bridge.modbus.api.LogVerbosity
All Implemented Interfaces:
Serializable, Comparable<LogVerbosity>, Constable

public enum LogVerbosity extends Enum<LogVerbosity>
  • Enum Constant Details

    • NONE

      public static final LogVerbosity NONE
      Show no logs.
    • DEBUG_LOG

      public static final LogVerbosity DEBUG_LOG
      Show basic information in Controller.Debug.Log.
    • READS_AND_WRITES

      public static final LogVerbosity READS_AND_WRITES
      Show logs for all read and write requests.
    • READS_AND_WRITES_VERBOSE

      public static final LogVerbosity READS_AND_WRITES_VERBOSE
      Show logs for all read and write requests, including actual hex values of request and response.
    • READS_AND_WRITES_DURATION

      public static final LogVerbosity READS_AND_WRITES_DURATION
      Show logs for all read and write requests, including actual duration time per request.
    • READS_AND_WRITES_DURATION_TRACE_EVENTS

      public static final LogVerbosity READS_AND_WRITES_DURATION_TRACE_EVENTS
      Show logs for all read and write requests, including actual duration time per request invalid input: '&' trace the internal Event-based State-Machine.
  • Method Details

    • values

      public static LogVerbosity[] 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 LogVerbosity 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