Enum HAProxyTLV.Type

java.lang.Object
java.lang.Enum<HAProxyTLV.Type>
io.netty.handler.codec.haproxy.HAProxyTLV.Type
All Implemented Interfaces:
Serializable, Comparable<HAProxyTLV.Type>, java.lang.constant.Constable
Enclosing class:
HAProxyTLV

public static enum HAProxyTLV.Type extends Enum<HAProxyTLV.Type>
The registered types a TLV can have regarding the PROXY protocol 1.5 spec
  • Enum Constant Details

    • PP2_TYPE_ALPN

      public static final HAProxyTLV.Type PP2_TYPE_ALPN
    • PP2_TYPE_AUTHORITY

      public static final HAProxyTLV.Type PP2_TYPE_AUTHORITY
    • PP2_TYPE_SSL

      public static final HAProxyTLV.Type PP2_TYPE_SSL
    • PP2_TYPE_SSL_VERSION

      public static final HAProxyTLV.Type PP2_TYPE_SSL_VERSION
    • PP2_TYPE_SSL_CN

      public static final HAProxyTLV.Type PP2_TYPE_SSL_CN
    • PP2_TYPE_NETNS

      public static final HAProxyTLV.Type PP2_TYPE_NETNS
    • OTHER

      public static final HAProxyTLV.Type OTHER
      A TLV type that is not officially defined in the spec. May be used for nonstandard TLVs
  • Constructor Details

    • Type

      private Type()
  • Method Details

    • values

      public static HAProxyTLV.Type[] 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 HAProxyTLV.Type 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
    • typeForByteValue

      public static HAProxyTLV.Type typeForByteValue(byte byteValue)
      Returns the HAProxyTLV.Type for a specific byte value as defined in the PROXY protocol 1.5 spec

      If the byte value is not an official one, it will return OTHER.

      Parameters:
      byteValue - the byte for a type
      Returns:
      the HAProxyTLV.Type of a TLV
    • byteValueForType

      public static byte byteValueForType(HAProxyTLV.Type type)
      Returns the byte value for the HAProxyTLV.Type as defined in the PROXY protocol 1.5 spec.
      Parameters:
      type - the HAProxyTLV.Type
      Returns:
      the byte value of the HAProxyTLV.Type.