public enum PostingType extends Enum<PostingType>
| Enum Constant and Description |
|---|
ADJ_TX |
BAL_STMT |
BS_STMT |
BUSI_TX |
LDG_CLSNG |
PnL_STMT |
| Modifier and Type | Method and Description |
|---|---|
static PostingType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostingType BUSI_TX
public static final PostingType ADJ_TX
public static final PostingType BAL_STMT
public static final PostingType PnL_STMT
public static final PostingType BS_STMT
public static final PostingType LDG_CLSNG
public static PostingType[] values()
for (PostingType c : PostingType.values()) System.out.println(c);
public static PostingType 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 © 2021. All rights reserved.