Serializable, Comparable<IdempotencyStatus>public enum IdempotencyStatus extends Enum<IdempotencyStatus>
| Enum Constant | Description |
|---|---|
CONFLICTING_KEY |
|
DISABLED |
|
ERROR |
|
NO_STATUS |
|
RETRIEVED_IDEMPOTENT_RESPONSE |
|
SUCCESSFULLY_STORED |
| Modifier and Type | Method | Description |
|---|---|---|
static IdempotencyStatus |
valueOf(String name) |
Returns the enum constant of this type with the specified name.
|
static IdempotencyStatus[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName("successfully_stored")
public static final IdempotencyStatus SUCCESSFULLY_STORED
@SerializedName("retrieved_idempotent_response")
public static final IdempotencyStatus RETRIEVED_IDEMPOTENT_RESPONSE
@SerializedName("conflicting_key")
public static final IdempotencyStatus CONFLICTING_KEY
@SerializedName("error")
public static final IdempotencyStatus ERROR
@SerializedName("no_status")
public static final IdempotencyStatus NO_STATUS
@SerializedName("disabled")
public static final IdempotencyStatus DISABLED
public static IdempotencyStatus[] values()
for (IdempotencyStatus c : IdempotencyStatus.values()) System.out.println(c);
public static IdempotencyStatus 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 © 2018 The Apache Software Foundation. All rights reserved.