public static enum ModelChange.Operation extends Enum<ModelChange.Operation>
| Modifier and Type | Method and Description |
|---|---|
static ModelChange.Operation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModelChange.Operation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelChange.Operation ADD
public static final ModelChange.Operation REMOVE
public static ModelChange.Operation[] values()
for (ModelChange.Operation c : ModelChange.Operation.values()) System.out.println(c);
public static ModelChange.Operation 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 © 2022. All rights reserved.