public enum ModificationType extends Enum<ModificationType>
| Enum Constant and Description |
|---|
ADDED |
CHANGED |
CONFLICT |
NONE |
REMOVED |
| Modifier and Type | Method and Description |
|---|---|
static ModificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ModificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModificationType CHANGED
public static final ModificationType REMOVED
public static final ModificationType ADDED
public static final ModificationType CONFLICT
public static final ModificationType NONE
public static ModificationType[] values()
for (ModificationType c : ModificationType.values()) System.out.println(c);
public static ModificationType 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.