Enum JettyLevel

java.lang.Object
java.lang.Enum<JettyLevel>
org.eclipse.jetty.logging.JettyLevel
All Implemented Interfaces:
Serializable, Comparable<JettyLevel>, java.lang.constant.Constable

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

  • Method Details

    • values

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

      public static JettyLevel 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
    • fromLevel

      public static JettyLevel fromLevel(org.slf4j.event.Level slf4jLevel)
    • toInt

      public int toInt()
    • toLevel

      public org.slf4j.event.Level toLevel()
    • includes

      public boolean includes(JettyLevel testLevel)
      Tests that a provided level is included by the level value of this level.
      Parameters:
      testLevel - the level to test against.
      Returns:
      true if includes this includes the test level.
    • toString

      public String toString()
      Overrides:
      toString in class Enum<JettyLevel>
    • intToLevel

      public static JettyLevel intToLevel(int levelInt)
    • strToLevel

      public static JettyLevel strToLevel(String levelStr)