public enum PostingErrorCode extends Enum<PostingErrorCode>
| Enum Constant and Description |
|---|
BASE_LINE_TIME_ERROR |
CHART_OF_ACCOUNT_NOT_FOUND |
DOBLE_ENTRY_ERROR |
LEDGER_ACCOUNT_NOT_FOUND |
LEDGER_NOT_FOUND |
NO_CATEGORY |
NOT_ENOUGH_INFO |
POSTING_NOT_FOUND |
POSTING_TIME_MISSING |
| Modifier and Type | Method and Description |
|---|---|
static PostingErrorCode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostingErrorCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostingErrorCode LEDGER_ACCOUNT_NOT_FOUND
public static final PostingErrorCode LEDGER_NOT_FOUND
public static final PostingErrorCode POSTING_NOT_FOUND
public static final PostingErrorCode DOBLE_ENTRY_ERROR
public static final PostingErrorCode BASE_LINE_TIME_ERROR
public static final PostingErrorCode POSTING_TIME_MISSING
public static final PostingErrorCode NOT_ENOUGH_INFO
public static final PostingErrorCode NO_CATEGORY
public static final PostingErrorCode CHART_OF_ACCOUNT_NOT_FOUND
public static PostingErrorCode[] values()
for (PostingErrorCode c : PostingErrorCode.values()) System.out.println(c);
public static PostingErrorCode 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.