public static enum UpdateResponse.Result extends Enum<UpdateResponse.Result>
| Enum Constant and Description |
|---|
CREATED |
DELETED |
NOOP |
NOT_FOUND |
UPDATED |
| Modifier and Type | Method and Description |
|---|---|
static UpdateResponse.Result |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpdateResponse.Result[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpdateResponse.Result CREATED
public static final UpdateResponse.Result UPDATED
public static final UpdateResponse.Result DELETED
public static final UpdateResponse.Result NOT_FOUND
public static final UpdateResponse.Result NOOP
public static UpdateResponse.Result[] values()
for (UpdateResponse.Result c : UpdateResponse.Result.values()) System.out.println(c);
public static UpdateResponse.Result 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 © 2011–2022 Pivotal Software, Inc.. All rights reserved.