Package com.adyen.model.management
Enum TerminalAssignment.StatusEnum
- java.lang.Object
-
- java.lang.Enum<TerminalAssignment.StatusEnum>
-
- com.adyen.model.management.TerminalAssignment.StatusEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TerminalAssignment.StatusEnum>
- Enclosing class:
- TerminalAssignment
public static enum TerminalAssignment.StatusEnum extends Enum<TerminalAssignment.StatusEnum>
The status of the reassignment. Possible values: * `reassignmentInProgress`: the terminal was boarded and is now scheduled to remove the configuration. Wait for the terminal to synchronize with the Adyen platform. * `deployed`: the terminal is deployed and reassigned. * `inventory`: the terminal is in inventory and cannot process transactions. * `boarded`: the terminal is boarded to a store, or a merchant account representing a store, and can process transactions.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BOARDEDDEPLOYEDINVENTORYREASSIGNMENTINPROGRESS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TerminalAssignment.StatusEnumfromValue(String value)StringgetValue()StringtoString()static TerminalAssignment.StatusEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TerminalAssignment.StatusEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
BOARDED
public static final TerminalAssignment.StatusEnum BOARDED
-
DEPLOYED
public static final TerminalAssignment.StatusEnum DEPLOYED
-
INVENTORY
public static final TerminalAssignment.StatusEnum INVENTORY
-
REASSIGNMENTINPROGRESS
public static final TerminalAssignment.StatusEnum REASSIGNMENTINPROGRESS
-
-
Method Detail
-
values
public static TerminalAssignment.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 (TerminalAssignment.StatusEnum c : TerminalAssignment.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 TerminalAssignment.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<TerminalAssignment.StatusEnum>
-
fromValue
public static TerminalAssignment.StatusEnum fromValue(String value)
-
-