Enum Class ProtocolType

java.lang.Object
java.lang.Enum<ProtocolType>
com.couchbase.lite.ProtocolType
All Implemented Interfaces:
Serializable, Comparable<ProtocolType>, java.lang.constant.Constable

public enum ProtocolType extends Enum<ProtocolType>
ENTERPRISE EDITION API

The protocol type of the data transportation.

  • Enum Constant Details

    • MESSAGE_STREAM

      public static final ProtocolType MESSAGE_STREAM
    • BYTE_STREAM

      public static final ProtocolType BYTE_STREAM
  • Method Details

    • values

      public static ProtocolType[] 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 ProtocolType 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
    • getFramingForProtocol

      @NonNull public static com.couchbase.lite.internal.sockets.MessageFraming getFramingForProtocol(@NonNull ProtocolType protocol)