public enum FinancialStatus extends Enum<FinancialStatus>
| Enum Constant and Description |
|---|
AUTHORIZED |
PAID |
PARTIALLY_PAID |
PARTIALLY_REFUNDED |
PENDING |
REFUNDED |
UNPAID |
VOIDED |
| Modifier and Type | Method and Description |
|---|---|
String |
toString() |
static FinancialStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static FinancialStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FinancialStatus PAID
public static final FinancialStatus AUTHORIZED
public static final FinancialStatus PENDING
public static final FinancialStatus PARTIALLY_PAID
public static final FinancialStatus REFUNDED
public static final FinancialStatus VOIDED
public static final FinancialStatus PARTIALLY_REFUNDED
public static final FinancialStatus UNPAID
public static FinancialStatus[] values()
for (FinancialStatus c : FinancialStatus.values()) System.out.println(c);
public static FinancialStatus 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<FinancialStatus>Copyright (c) 2006-2025 North Concepts Inc. All Rights Reserved.