public enum DataOperation extends Enum<DataOperation>
| Modifier and Type | Method and Description |
|---|---|
String |
getOperation() |
static DataOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataOperation CREATE
public static final DataOperation UPDATE
public static final DataOperation DELETE
public static final DataOperation SNAPSHOT
public static DataOperation[] values()
for (DataOperation c : DataOperation.values()) System.out.println(c);
public static DataOperation 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 String getOperation()
Copyright © 2016–2017 Zalando SE. All rights reserved.