public enum EItSrTy extends Enum<EItSrTy>
Item sources type.
| Enum Constant and Description |
|---|
BASIC
0 basic sources, e.g.
|
INNER
1 inner sources, e.g.
|
| Modifier and Type | Method and Description |
|---|---|
static EItSrTy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static EItSrTy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EItSrTy BASIC
0 basic sources, e.g. purchase good line, item adding line, sales return line.
public static final EItSrTy INNER
1 inner sources, e.g. manufacturing process.
public static EItSrTy[] values()
for (EItSrTy c : EItSrTy.values()) System.out.println(c);
public static EItSrTy 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–2020. All rights reserved.