Package com.adyen.model.checkout
Enum AdditionalDataCommon.IndustryUsageEnum
- java.lang.Object
-
- java.lang.Enum<AdditionalDataCommon.IndustryUsageEnum>
-
- com.adyen.model.checkout.AdditionalDataCommon.IndustryUsageEnum
-
- All Implemented Interfaces:
Serializable,Comparable<AdditionalDataCommon.IndustryUsageEnum>
- Enclosing class:
- AdditionalDataCommon
public static enum AdditionalDataCommon.IndustryUsageEnum extends Enum<AdditionalDataCommon.IndustryUsageEnum>
In case of [asynchronous authorisation adjustment](https://docs.adyen.com/online-payments/adjust-authorisation#adjust-authorisation), this field denotes why the additional payment is made. Possible values: * **NoShow**: An incremental charge is carried out because of a no-show for a guaranteed reservation. * **DelayedCharge**: An incremental charge is carried out to process an additional payment after the original services have been rendered and the respective payment has been processed.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DELAYEDCHARGENOSHOW
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AdditionalDataCommon.IndustryUsageEnumfromValue(String value)StringgetValue()StringtoString()static AdditionalDataCommon.IndustryUsageEnumvalueOf(String name)Returns the enum constant of this type with the specified name.static AdditionalDataCommon.IndustryUsageEnum[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NOSHOW
public static final AdditionalDataCommon.IndustryUsageEnum NOSHOW
-
DELAYEDCHARGE
public static final AdditionalDataCommon.IndustryUsageEnum DELAYEDCHARGE
-
-
Method Detail
-
values
public static AdditionalDataCommon.IndustryUsageEnum[] 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 (AdditionalDataCommon.IndustryUsageEnum c : AdditionalDataCommon.IndustryUsageEnum.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdditionalDataCommon.IndustryUsageEnum 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<AdditionalDataCommon.IndustryUsageEnum>
-
fromValue
public static AdditionalDataCommon.IndustryUsageEnum fromValue(String value)
-
-