public enum EPackageStatus extends java.lang.Enum<EPackageStatus>
| Enum Constant and Description |
|---|
Available |
Invalid |
Preorder |
Unavailable |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EPackageStatus |
from(int code) |
static EPackageStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EPackageStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EPackageStatus Available
public static final EPackageStatus Preorder
public static final EPackageStatus Unavailable
public static final EPackageStatus Invalid
public static EPackageStatus[] values()
for (EPackageStatus c : EPackageStatus.values()) System.out.println(c);
public static EPackageStatus 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 int code()
public static EPackageStatus from(int code)