Enum Coder

  • All Implemented Interfaces:
    java.io.Serializable, java.lang.Comparable<Coder>

    public enum Coder
    extends java.lang.Enum<Coder>
    A coder is an implementation of the predefined encoders/decoders defined for HTTP.
    • Enum Constant Detail

      • NoCoding

        public static final Coder NoCoding
      • Deflate

        public static final Coder Deflate
      • Gzip

        public static final Coder Gzip
      • DeflateLevel1

        public static final Coder DeflateLevel1
      • DeflateLevel9

        public static final Coder DeflateLevel9
      • GzipLevel1

        public static final Coder GzipLevel1
      • GzipLevel9

        public static final Coder GzipLevel9
    • Method Detail

      • values

        public static Coder[] values()
        Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
        for (Coder c : Coder.values())
            System.out.println(c);
        
        Returns:
        an array containing the constants of this enum type, in the order they are declared
      • valueOf

        public static Coder valueOf​(java.lang.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:
        java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
        java.lang.NullPointerException - if the argument is null
      • encode

        @Deprecated
        public akka.util.ByteString encode​(akka.util.ByteString input)
        Deprecated.
        Synchronous encoding is deprecated since 10.2.0
      • decode

        public java.util.concurrent.CompletionStage<akka.util.ByteString> decode​(akka.util.ByteString input,
                                                                                 akka.stream.Materializer mat)
      • _underlyingScalaCoder

        public Coder _underlyingScalaCoder()