public enum ResourceStatus extends Enum<ResourceStatus>
Enum Constant and Description |
---|
Completed |
Error |
Generating |
Importing |
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 Completed
public static final ResourceStatus Error
public static final ResourceStatus Importing
public static final ResourceStatus Generating
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 © 2017. All Rights Reserved.