@PublicEvolving public enum DynamoDbWriteRequestType extends Enum<DynamoDbWriteRequestType>
| Modifier and Type | Method and Description |
|---|---|
static DynamoDbWriteRequestType |
fromByteValue(byte value)
Creates a
DynamoDbWriteRequestType from the given byte value. |
byte |
toByteValue()
Returns the byte value representation of this
DynamoDbWriteRequestType. |
static DynamoDbWriteRequestType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DynamoDbWriteRequestType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DynamoDbWriteRequestType PUT
public static final DynamoDbWriteRequestType DELETE
public static DynamoDbWriteRequestType[] values()
for (DynamoDbWriteRequestType c : DynamoDbWriteRequestType.values()) System.out.println(c);
public static DynamoDbWriteRequestType 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 nullpublic byte toByteValue()
DynamoDbWriteRequestType. The byte
value is used for serialization and deserialization.
public static DynamoDbWriteRequestType fromByteValue(byte value)
DynamoDbWriteRequestType from the given byte value. Each DynamoDbWriteRequestType has a byte value representation.Copyright © 2022–2023 The Apache Software Foundation. All rights reserved.