Package akka.http.javadsl.coding
Enum Coder
- java.lang.Object
-
- java.lang.Enum<Coder>
-
- akka.http.javadsl.coding.Coder
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DeflateDeflateLevel1DeflateLevel9GzipGzipLevel1GzipLevel9NoCoding
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description Coder_underlyingScalaCoder()java.util.concurrent.CompletionStage<akka.util.ByteString>decode(akka.util.ByteString input, akka.stream.Materializer mat)HttpRequestdecodeMessage(HttpRequest message)HttpResponsedecodeMessage(HttpResponse message)akka.util.ByteStringencode(akka.util.ByteString input)Deprecated.Synchronous encoding is deprecated since 10.2.0HttpRequestencodeMessage(HttpRequest message)HttpResponseencodeMessage(HttpResponse message)static CodervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static Coder[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
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 namejava.lang.NullPointerException- if the argument is null
-
encodeMessage
public HttpResponse encodeMessage(HttpResponse message)
-
encodeMessage
public HttpRequest encodeMessage(HttpRequest message)
-
encode
@Deprecated public akka.util.ByteString encode(akka.util.ByteString input)
Deprecated.Synchronous encoding is deprecated since 10.2.0
-
decodeMessage
public HttpResponse decodeMessage(HttpResponse message)
-
decodeMessage
public HttpRequest decodeMessage(HttpRequest message)
-
decode
public java.util.concurrent.CompletionStage<akka.util.ByteString> decode(akka.util.ByteString input, akka.stream.Materializer mat)
-
_underlyingScalaCoder
public Coder _underlyingScalaCoder()
-
-