public enum EItmTy extends Enum<EItmTy>
Shop item type.
| Enum Constant and Description |
|---|
GOODS
0, Goods that stored in shop owner's warehouse, they are usually
belongs to the owner.
|
SEGOODS
2, S.E.
|
SERVICE
1, Service that performed by shop owner.
|
SESERVICE
3, S.E.Service that performed by S.E.
|
| Modifier and Type | Method and Description |
|---|---|
static EItmTy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EItmTy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EItmTy GOODS
0, Goods that stored in shop owner's warehouse, they are usually belongs to the owner. Owner can rent his warehouse to store S.E. seller's goods.
public static final EItmTy SERVICE
1, Service that performed by shop owner.
public static final EItmTy SEGOODS
2, S.E. Goods that located in S.E. seller warehouse.
public static final EItmTy SESERVICE
3, S.E.Service that performed by S.E. Seller.
public static EItmTy[] values()
for (EItmTy c : EItmTy.values()) System.out.println(c);
public static EItmTy 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 © 2019. All rights reserved.