Enum TerminalSettingsData.UpdateSourceEnum
- java.lang.Object
-
- java.lang.Enum<TerminalSettingsData.UpdateSourceEnum>
-
- com.adyen.model.managementwebhooks.TerminalSettingsData.UpdateSourceEnum
-
- All Implemented Interfaces:
Serializable,Comparable<TerminalSettingsData.UpdateSourceEnum>
- Enclosing class:
- TerminalSettingsData
public static enum TerminalSettingsData.UpdateSourceEnum extends Enum<TerminalSettingsData.UpdateSourceEnum>
Indicates whether the terminal settings were updated using the Customer Area or the Management API.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CUSTOMER_AREAMANAGEMENT_API
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static TerminalSettingsData.UpdateSourceEnumfromValue(String value)StringgetValue()StringtoString()static TerminalSettingsData.UpdateSourceEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static TerminalSettingsData.UpdateSourceEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CUSTOMER_AREA
public static final TerminalSettingsData.UpdateSourceEnum CUSTOMER_AREA
-
MANAGEMENT_API
public static final TerminalSettingsData.UpdateSourceEnum MANAGEMENT_API
-
-
Method Detail
-
values
public static TerminalSettingsData.UpdateSourceEnum[] 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 (TerminalSettingsData.UpdateSourceEnum c : TerminalSettingsData.UpdateSourceEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TerminalSettingsData.UpdateSourceEnum 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<TerminalSettingsData.UpdateSourceEnum>
-
fromValue
public static TerminalSettingsData.UpdateSourceEnum fromValue(String value)
-
-