Enum Class SettingIdentifier

java.lang.Object
java.lang.Enum<SettingIdentifier>
robaho.net.httpserver.http2.frame.SettingIdentifier
All Implemented Interfaces:
Serializable, Comparable<SettingIdentifier>, Constable

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

    • SETTINGS_HEADER_TABLE_SIZE

      public static final SettingIdentifier SETTINGS_HEADER_TABLE_SIZE
    • SETTINGS_ENABLE_PUSH

      public static final SettingIdentifier SETTINGS_ENABLE_PUSH
    • SETTINGS_MAX_CONCURRENT_STREAMS

      public static final SettingIdentifier SETTINGS_MAX_CONCURRENT_STREAMS
    • SETTINGS_INITIAL_WINDOW_SIZE

      public static final SettingIdentifier SETTINGS_INITIAL_WINDOW_SIZE
    • SETTINGS_MAX_FRAME_SIZE

      public static final SettingIdentifier SETTINGS_MAX_FRAME_SIZE
    • SETTINGS_MAX_HEADER_LIST_SIZE

      public static final SettingIdentifier SETTINGS_MAX_HEADER_LIST_SIZE
    • SETTINGS_NONE

      public static final SettingIdentifier SETTINGS_NONE
  • Method Details

    • values

      public static SettingIdentifier[] 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 SettingIdentifier 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
    • getValue

      public int getValue()
    • getEnum

      public static SettingIdentifier getEnum(int value)
    • validateValue

      public boolean validateValue(long value)