public enum PaymentStatus extends Enum<PaymentStatus>
Enum Constant and Description |
---|
ACCC |
ACCP |
ACFC |
ACSC |
ACSP |
ACTC |
ACWC |
ACWP |
CANC |
PATC |
PDNG |
RCVD |
RJCT |
Modifier and Type | Method and Description |
---|---|
static PaymentStatus |
fromValue(String text) |
String |
toString() |
static PaymentStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaymentStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaymentStatus ACCC
public static final PaymentStatus ACCP
public static final PaymentStatus ACSC
public static final PaymentStatus ACSP
public static final PaymentStatus ACTC
public static final PaymentStatus ACWC
public static final PaymentStatus ACWP
public static final PaymentStatus RCVD
public static final PaymentStatus PDNG
public static final PaymentStatus RJCT
public static final PaymentStatus CANC
public static final PaymentStatus ACFC
public static final PaymentStatus PATC
public static PaymentStatus[] values()
for (PaymentStatus c : PaymentStatus.values()) System.out.println(c);
public static PaymentStatus 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 nullpublic String toString()
toString
in class Enum<PaymentStatus>
public static PaymentStatus fromValue(String text)
Copyright © 2020. All rights reserved.