public static enum Database.ShopInfo extends Enum<Database.ShopInfo>
Enum Constant and Description |
---|
BUYPRICE |
LOCATION |
PRODUCT |
SELLPRICE |
SHOP |
SHOPTYPE |
VENDOR |
WORLD |
X |
Y |
Z |
Modifier and Type | Method and Description |
---|---|
static Database.ShopInfo |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Database.ShopInfo[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Database.ShopInfo SHOP
public static final Database.ShopInfo VENDOR
public static final Database.ShopInfo PRODUCT
public static final Database.ShopInfo WORLD
public static final Database.ShopInfo X
public static final Database.ShopInfo Y
public static final Database.ShopInfo Z
public static final Database.ShopInfo LOCATION
public static final Database.ShopInfo BUYPRICE
public static final Database.ShopInfo SELLPRICE
public static final Database.ShopInfo SHOPTYPE
public static Database.ShopInfo[] values()
for (Database.ShopInfo c : Database.ShopInfo.values()) System.out.println(c);
public static Database.ShopInfo 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 © 2016. All rights reserved.