public enum EShopItemType extends Enum<EShopItemType>
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 EShopItemType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EShopItemType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EShopItemType 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. It's org.beigesoft.accounting.persistable.InvItem.
public static final EShopItemType SERVICE
1, Service that performed by shop owner. It's org.beigesoft.accounting.persistable.ServiceToSale.
public static final EShopItemType SEGOODS
2, S.E. Goods that located in S.E. seller warehouse. It's org.beigesoft.webstore.persistable.SeGoods.
public static final EShopItemType SESERVICE
3, S.E.Service that performed by S.E. Seller. It's org.beigesoft.webstore.persistable.SeService
public static EShopItemType[] values()
for (EShopItemType c : EShopItemType.values()) System.out.println(c);
public static EShopItemType 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–2018. All rights reserved.