Package org.killbill.billing.invoice.api
Enum InvoicePaymentStatus
- java.lang.Object
-
- java.lang.Enum<InvoicePaymentStatus>
-
- org.killbill.billing.invoice.api.InvoicePaymentStatus
-
- All Implemented Interfaces:
Serializable,Comparable<InvoicePaymentStatus>
public enum InvoicePaymentStatus extends Enum<InvoicePaymentStatus>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static InvoicePaymentStatusvalueOf(String name)Returns the enum constant of this type with the specified name.static InvoicePaymentStatus[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INIT
public static final InvoicePaymentStatus INIT
-
PENDING
public static final InvoicePaymentStatus PENDING
-
SUCCESS
public static final InvoicePaymentStatus SUCCESS
-
-
Method Detail
-
values
public static InvoicePaymentStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (InvoicePaymentStatus c : InvoicePaymentStatus.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static InvoicePaymentStatus valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-