public static enum ChangeModel.ChangeKind extends Enum<ChangeModel.ChangeKind>
| Enum Constant and Description |
|---|
MUTATED
Indicates a nested change.
|
NONE
Indicates nothing changed.
|
UPDATED
Indicates a reference changed.
|
| Modifier and Type | Method and Description |
|---|---|
static ChangeModel.ChangeKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChangeModel.ChangeKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChangeModel.ChangeKind NONE
public static final ChangeModel.ChangeKind UPDATED
public static final ChangeModel.ChangeKind MUTATED
public static ChangeModel.ChangeKind[] values()
for (ChangeModel.ChangeKind c : ChangeModel.ChangeKind.values()) System.out.println(c);
public static ChangeModel.ChangeKind 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 © 2014–2018 Blazebit. All rights reserved.