public enum EWarehouseMovementType extends Enum<EWarehouseMovementType>
Type of warehouse movement source LOAD/WITHDRAWAL/MOVE. E.g. PurchaseInvoiceLine - LOAD, SalesInvoiceLine - WITHDRAWAL.
| Enum Constant and Description |
|---|
LOAD
If loads (put).
|
MOVE
If move within/between warehouse/s.
|
WITHDRAWAL
If withdrawals.
|
| Modifier and Type | Method and Description |
|---|---|
static EWarehouseMovementType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EWarehouseMovementType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EWarehouseMovementType LOAD
If loads (put).
public static final EWarehouseMovementType WITHDRAWAL
If withdrawals.
public static final EWarehouseMovementType MOVE
If move within/between warehouse/s.
public static EWarehouseMovementType[] values()
for (EWarehouseMovementType c : EWarehouseMovementType.values()) System.out.println(c);
public static EWarehouseMovementType 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–2018. All rights reserved.