public enum ResourceStatus extends Enum<ResourceStatus>
| Enum Constant and Description |
|---|
MODIFIED
Resource changed since previous build.
|
NEW
Resource is new in this build, i.e.
|
REMOVED
Resource was removed since previous build.
|
UNMODIFIED
Resource did not changed since previous build.
|
| Modifier and Type | Method and Description |
|---|---|
static ResourceStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResourceStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResourceStatus NEW
public static final ResourceStatus MODIFIED
public static final ResourceStatus UNMODIFIED
public static final ResourceStatus REMOVED
public static ResourceStatus[] values()
for (ResourceStatus c : ResourceStatus.values()) System.out.println(c);
public static ResourceStatus 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 © 2015. All rights reserved.