public enum ResourceDeltaKind extends java.lang.Enum<ResourceDeltaKind> implements IntegralConstant
IResourceDelta
Enum Constant and Description |
---|
ADDED |
ADDED_PHANTOM |
CHANGED |
NO_CHANGE |
REMOVED |
REMOVED_PHANTOM |
Modifier and Type | Field and Description |
---|---|
static java.util.Set<ResourceDeltaKind> |
ALL_WITH_PHANTOMS |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static ResourceDeltaKind |
valueOf(int value) |
static ResourceDeltaKind |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ResourceDeltaKind[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
static java.util.Set<java.lang.Integer> |
valuesAsIntegers() |
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
equals
public static final ResourceDeltaKind NO_CHANGE
IResourceDelta.NO_CHANGE
public static final ResourceDeltaKind ADDED
IResourceDelta.ADDED
public static final ResourceDeltaKind REMOVED
IResourceDelta.REMOVED
public static final ResourceDeltaKind CHANGED
IResourceDelta.CHANGED
public static final ResourceDeltaKind ADDED_PHANTOM
IResourceDelta.ADDED_PHANTOM
public static final ResourceDeltaKind REMOVED_PHANTOM
IResourceDelta.REMOVED_PHANTOM
public static final java.util.Set<ResourceDeltaKind> ALL_WITH_PHANTOMS
public static ResourceDeltaKind[] values()
for (ResourceDeltaKind c : ResourceDeltaKind.values()) System.out.println(c);
public static ResourceDeltaKind valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static java.util.Set<java.lang.Integer> valuesAsIntegers()
public static ResourceDeltaKind valueOf(int value)
public int getValue()
getValue
in interface IntegralConstant