Package com.adyen.model.nexo
Enum ReconciliationType
- java.lang.Object
-
- java.lang.Enum<ReconciliationType>
-
- com.adyen.model.nexo.ReconciliationType
-
- All Implemented Interfaces:
Serializable,Comparable<ReconciliationType>
public enum ReconciliationType extends Enum<ReconciliationType>
Java class for ReconciliationType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReconciliationType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="SaleReconciliation"/> <enumeration value="AcquirerSynchronisation"/> <enumeration value="AcquirerReconciliation"/> <enumeration value="PreviousReconciliation"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACQUIRER_RECONCILIATIONReconciliation between the POI and one or several Acquirers only.ACQUIRER_SYNCHRONISATIONReconciliation and closure of the current period, with synchronisation of the reconciliation between the POI and Acquirers.PREVIOUS_RECONCILIATIONRequest result of a previous reconciliation.SALE_RECONCILIATIONReconciliation with closure of the current period, without any Acquirers synchronisation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ReconciliationTypefromValue(String v)From value reconciliation type.Stringvalue()Value string.static ReconciliationTypevalueOf(String name)Returns the enum constant of this type with the specified name.static ReconciliationType[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SALE_RECONCILIATION
public static final ReconciliationType SALE_RECONCILIATION
Reconciliation with closure of the current period, without any Acquirers synchronisation.
-
ACQUIRER_SYNCHRONISATION
public static final ReconciliationType ACQUIRER_SYNCHRONISATION
Reconciliation and closure of the current period, with synchronisation of the reconciliation between the POI and Acquirers.
-
ACQUIRER_RECONCILIATION
public static final ReconciliationType ACQUIRER_RECONCILIATION
Reconciliation between the POI and one or several Acquirers only. There is no reconciliation between the Sale System and the POI System.
-
PREVIOUS_RECONCILIATION
public static final ReconciliationType PREVIOUS_RECONCILIATION
Request result of a previous reconciliation.
-
-
Method Detail
-
values
public static ReconciliationType[] 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 (ReconciliationType c : ReconciliationType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ReconciliationType 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
-
value
public String value()
Value string.- Returns:
- the string
-
fromValue
public static ReconciliationType fromValue(String v)
From value reconciliation type.- Parameters:
v- the v- Returns:
- the reconciliation type
-
-