public enum EnumFileStatus extends Enum<EnumFileStatus>
Enum Constant and Description |
---|
CREATED |
CREATING_MODELSET |
DELETED |
NOT_LOADED |
ZAPPED |
Modifier and Type | Field and Description |
---|---|
private int |
code |
Modifier and Type | Method and Description |
---|---|
int |
getCode() |
static EnumFileStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EnumFileStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumFileStatus DELETED
public static final EnumFileStatus CREATED
public static final EnumFileStatus CREATING_MODELSET
public static final EnumFileStatus ZAPPED
public static final EnumFileStatus NOT_LOADED
public static EnumFileStatus[] values()
for (EnumFileStatus c : EnumFileStatus.values()) System.out.println(c);
public static EnumFileStatus 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 int getCode()