public enum ModificationStatus extends Enum<ModificationStatus>
ModificationReport| Enum Constant and Description |
|---|
FAILED
Modification failed, old value will usually hold the current value and new value the update that failed.
|
SKIPPED
Modification was skipped, old value will usually hold the current value.
|
SUCCESSFUL
Modification was successful, usually both new and old value will be entered.
|
| Modifier and Type | Method and Description |
|---|---|
static ModificationStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModificationStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationStatus SUCCESSFUL
public static final ModificationStatus SKIPPED
public static final ModificationStatus FAILED
public static ModificationStatus[] values()
for (ModificationStatus c : ModificationStatus.values()) System.out.println(c);
public static ModificationStatus 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 © 2020. All rights reserved.