Package com.adyen.model.checkout
Enum OpenInvoiceDetails.TypeEnum
- java.lang.Object
-
- java.lang.Enum<OpenInvoiceDetails.TypeEnum>
-
- com.adyen.model.checkout.OpenInvoiceDetails.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<OpenInvoiceDetails.TypeEnum>
- Enclosing class:
- OpenInvoiceDetails
public static enum OpenInvoiceDetails.TypeEnum extends Enum<OpenInvoiceDetails.TypeEnum>
**openinvoice**
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AFTERPAY_DIRECTDEBITATOME_POSOPENINVOICE
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OpenInvoiceDetails.TypeEnumfromValue(String value)StringgetValue()StringtoString()static OpenInvoiceDetails.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static OpenInvoiceDetails.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OPENINVOICE
public static final OpenInvoiceDetails.TypeEnum OPENINVOICE
-
AFTERPAY_DIRECTDEBIT
public static final OpenInvoiceDetails.TypeEnum AFTERPAY_DIRECTDEBIT
-
ATOME_POS
public static final OpenInvoiceDetails.TypeEnum ATOME_POS
-
-
Method Detail
-
values
public static OpenInvoiceDetails.TypeEnum[] 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 (OpenInvoiceDetails.TypeEnum c : OpenInvoiceDetails.TypeEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OpenInvoiceDetails.TypeEnum 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
-
getValue
public String getValue()
-
toString
public String toString()
- Overrides:
toStringin classEnum<OpenInvoiceDetails.TypeEnum>
-
fromValue
public static OpenInvoiceDetails.TypeEnum fromValue(String value)
-
-