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, valueOfequalspublic static final ResourceDeltaKind NO_CHANGE
IResourceDelta.NO_CHANGEpublic static final ResourceDeltaKind ADDED
IResourceDelta.ADDEDpublic static final ResourceDeltaKind REMOVED
IResourceDelta.REMOVEDpublic static final ResourceDeltaKind CHANGED
IResourceDelta.CHANGEDpublic static final ResourceDeltaKind ADDED_PHANTOM
IResourceDelta.ADDED_PHANTOMpublic static final ResourceDeltaKind REMOVED_PHANTOM
IResourceDelta.REMOVED_PHANTOMpublic 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