public static enum Delta.DeltaKind extends Enum<Delta.DeltaKind>
| Enum Constant and Description |
|---|
Added
The resource associated to the delta has been added to project.
|
Modified
The resource associated to the delta has been modified.
|
Removed
The resource associated to the delta has been removed from project.
|
| Modifier and Type | Method and Description |
|---|---|
static Delta.DeltaKind |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Delta.DeltaKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Delta.DeltaKind Added
public static final Delta.DeltaKind Modified
public static final Delta.DeltaKind Removed
public static Delta.DeltaKind 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 static Delta.DeltaKind[] values()
for (Delta.DeltaKind c : Delta.DeltaKind.values()) System.out.println(c);