public enum QueueMessageEncoding extends Enum<QueueMessageEncoding>
| Enum Constant and Description |
|---|
BASE64
The queue message body is represented as Base64 encoded string in HTTP requests and responses.
|
NONE
The queue message body is represented verbatim in HTTP requests and responses.
|
| Modifier and Type | Method and Description |
|---|---|
static QueueMessageEncoding |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueueMessageEncoding[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueueMessageEncoding NONE
public static final QueueMessageEncoding BASE64
This was the default behavior in the prior v8 and v11 library. Using this option can make interop with an existing application easier.
public static QueueMessageEncoding[] values()
public static QueueMessageEncoding valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullVisit the Azure for Java Developers site for more Java documentation, including quick starts, tutorials, and code samples.