public enum EEntriesSourceType extends Enum<EEntriesSourceType>
Entries SQL Source Type - DOCUMENT/DRAW_ITEM_ENTRY_BY_DOCUMENT/ DRAW_ITEM_ENTRY_BY_DOCUMENT_LINE. This is to resolve dynamic filter for source ID, e.g. where either PURCHASEINVOICE.ITSID=1 or DRAWINGOWNERID=1
| Enum Constant and Description |
|---|
DOCUMENT
SQL query for ordinal document.
|
DRAW_ITEM_ENTRY_BY_DOCUMENT
SQL query for draw item entry that made by a document.
|
DRAW_ITEM_ENTRY_BY_DOCUMENT_LINE
SQL query for draw item entry that made by a document line.
|
| Modifier and Type | Method and Description |
|---|---|
static EEntriesSourceType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EEntriesSourceType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EEntriesSourceType DOCUMENT
SQL query for ordinal document.
public static final EEntriesSourceType DRAW_ITEM_ENTRY_BY_DOCUMENT
SQL query for draw item entry that made by a document.
public static final EEntriesSourceType DRAW_ITEM_ENTRY_BY_DOCUMENT_LINE
SQL query for draw item entry that made by a document line.
public static EEntriesSourceType[] values()
for (EEntriesSourceType c : EEntriesSourceType.values()) System.out.println(c);
public static EEntriesSourceType 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.