Enum StreamType

java.lang.Object
java.lang.Enum<StreamType>
org.eclipse.jetty.quic.common.StreamType
All Implemented Interfaces:
Serializable, Comparable<StreamType>, java.lang.constant.Constable

public enum StreamType extends Enum<StreamType>

The QUIC stream type, either client or server initiated, and either unidirectional or bidirectional.

  • Enum Constant Details

    • CLIENT_BIDIRECTIONAL

      public static final StreamType CLIENT_BIDIRECTIONAL
    • SERVER_BIDIRECTIONAL

      public static final StreamType SERVER_BIDIRECTIONAL
    • CLIENT_UNIDIRECTIONAL

      public static final StreamType CLIENT_UNIDIRECTIONAL
    • SERVER_UNIDIRECTIONAL

      public static final StreamType SERVER_UNIDIRECTIONAL
  • Method Details

    • values

      public static StreamType[] 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 StreamType 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
    • from

      public static StreamType from(long streamId)
    • isReserved

      public static boolean isReserved(long streamType)
    • type

      public int type()