Package com.adyen.model.management
Enum AndroidApp.StatusEnum
- java.lang.Object
-
- java.lang.Enum<AndroidApp.StatusEnum>
-
- com.adyen.model.management.AndroidApp.StatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AndroidApp.StatusEnum>
- Enclosing class:
- AndroidApp
public static enum AndroidApp.StatusEnum extends Enum<AndroidApp.StatusEnum>
The status of the app. Possible values: * `processing`: the app is being signed and converted to a format that the terminal can handle. * `error`: something went wrong. Check that the app matches the [requirements](https://docs.adyen.com/point-of-sale/android-terminals/app-requirements). * `invalid`: there is something wrong with the APK file of the app. * `ready`: the app has been signed and converted. * `archived`: the app is no longer available.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARCHIVEDERRORINVALIDPROCESSINGREADY
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AndroidApp.StatusEnumfromValue(String value)StringgetValue()StringtoString()static AndroidApp.StatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AndroidApp.StatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ARCHIVED
public static final AndroidApp.StatusEnum ARCHIVED
-
ERROR
public static final AndroidApp.StatusEnum ERROR
-
INVALID
public static final AndroidApp.StatusEnum INVALID
-
PROCESSING
public static final AndroidApp.StatusEnum PROCESSING
-
READY
public static final AndroidApp.StatusEnum READY
-
-
Method Detail
-
values
public static AndroidApp.StatusEnum[] 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 (AndroidApp.StatusEnum c : AndroidApp.StatusEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AndroidApp.StatusEnum 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<AndroidApp.StatusEnum>
-
fromValue
public static AndroidApp.StatusEnum fromValue(String value)
-
-