Package com.adyen.model.balanceplatform
Enum AssociationFinaliseResponse.TypeEnum
- java.lang.Object
-
- java.lang.Enum<AssociationFinaliseResponse.TypeEnum>
-
- com.adyen.model.balanceplatform.AssociationFinaliseResponse.TypeEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AssociationFinaliseResponse.TypeEnum>
- Enclosing class:
- AssociationFinaliseResponse
public static enum AssociationFinaliseResponse.TypeEnum extends Enum<AssociationFinaliseResponse.TypeEnum>
The type of resource that you associated with the SCA device.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description PAYMENT_INSTRUMENT
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AssociationFinaliseResponse.TypeEnumfromValue(String value)StringgetValue()StringtoString()static AssociationFinaliseResponse.TypeEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AssociationFinaliseResponse.TypeEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PAYMENT_INSTRUMENT
public static final AssociationFinaliseResponse.TypeEnum PAYMENT_INSTRUMENT
-
-
Method Detail
-
values
public static AssociationFinaliseResponse.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 (AssociationFinaliseResponse.TypeEnum c : AssociationFinaliseResponse.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 AssociationFinaliseResponse.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<AssociationFinaliseResponse.TypeEnum>
-
fromValue
public static AssociationFinaliseResponse.TypeEnum fromValue(String value)
-
-