Enum Class EventLogLevel

java.lang.Object
java.lang.Enum<EventLogLevel>
org.infinispan.util.logging.events.EventLogLevel
All Implemented Interfaces:
Serializable, Comparable<EventLogLevel>, Constable

@ProtoTypeId(1001) public enum EventLogLevel extends Enum<EventLogLevel>
EventLogLevel.
Since:
8.2
Author:
Tristan Tarrant
  • Enum Constant Details

    • INFO

      @ProtoEnumValue(number=0) public static final EventLogLevel INFO
    • WARN

      @ProtoEnumValue(number=1) public static final EventLogLevel WARN
    • ERROR

      @ProtoEnumValue(number=2) public static final EventLogLevel ERROR
    • FATAL

      @ProtoEnumValue(number=3) public static final EventLogLevel FATAL
  • Method Details

    • values

      public static EventLogLevel[] 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 EventLogLevel 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
    • toLoggerLevel

      public org.jboss.logging.Logger.Level toLoggerLevel()