Enum Class ServletAttributes

java.lang.Object
java.lang.Enum<ServletAttributes>
io.micronaut.servlet.api.ServletAttributes
All Implemented Interfaces:
Serializable, CharSequence, Comparable<ServletAttributes>, Constable

public enum ServletAttributes extends Enum<ServletAttributes> implements CharSequence
Attributes to lookup servlet related types from the request.
See Also:
  • HttpAttributes
  • Enum Constant Details

    • SERVLET_CONFIG

      public static final ServletAttributes SERVLET_CONFIG
      Attribute to lookup the ServletConfig.
    • SERVLET_CONTEXT

      public static final ServletAttributes SERVLET_CONTEXT
      Attribute to lookup the ServletContext.
  • Method Details

    • values

      public static ServletAttributes[] 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 ServletAttributes 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
    • length

      public int length()
      Specified by:
      length in interface CharSequence
    • charAt

      public char charAt(int index)
      Specified by:
      charAt in interface CharSequence
    • subSequence

      @NonNull public @NonNull CharSequence subSequence(int start, int end)
      Specified by:
      subSequence in interface CharSequence
    • toString

      @NonNull public @NonNull String toString()
      Specified by:
      toString in interface CharSequence
      Overrides:
      toString in class Enum<ServletAttributes>