@Generated(value="jsii-pacmak/1.30.0 (build adae23f)", date="2021-06-30T10:00:46.038Z") @Stability(value=Experimental) public enum ContentHandling extends Enum<ContentHandling>
| Enum Constant and Description |
|---|
CONVERT_TO_BINARY
(experimental) Converts a request payload from a base64-encoded string to a binary blob.
|
CONVERT_TO_TEXT
(experimental) Converts a request payload from a binary blob to a base64-encoded string.
|
| Modifier and Type | Method and Description |
|---|---|
static ContentHandling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ContentHandling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@Stability(value=Experimental) public static final ContentHandling CONVERT_TO_BINARY
@Stability(value=Experimental) public static final ContentHandling CONVERT_TO_TEXT
public static ContentHandling[] values()
for (ContentHandling c : ContentHandling.values()) System.out.println(c);
public static ContentHandling 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 nullCopyright © 2021. All rights reserved.