public enum PostingStatus extends Enum<PostingStatus>
| Enum Constant and Description |
|---|
CANCELLED |
DEFERRED |
OTHER |
POSTED |
PROPOSED |
SIMULATED |
TAX |
UNPOSTED |
| Modifier and Type | Method and Description |
|---|---|
static PostingStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PostingStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PostingStatus DEFERRED
public static final PostingStatus POSTED
public static final PostingStatus PROPOSED
public static final PostingStatus SIMULATED
public static final PostingStatus TAX
public static final PostingStatus UNPOSTED
public static final PostingStatus CANCELLED
public static final PostingStatus OTHER
public static PostingStatus[] values()
for (PostingStatus c : PostingStatus.values()) System.out.println(c);
public static PostingStatus 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 © 2020. All rights reserved.