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 and Description |
|---|
ACQUIRER_RECONCILIATION
Reconciliation between the POI and one or several Acquirers only.
|
ACQUIRER_SYNCHRONISATION
Reconciliation and closure of the current period, with synchronisation of the reconciliation between the POI and Acquirers.
|
PREVIOUS_RECONCILIATION
Request result of a previous reconciliation.
|
SALE_RECONCILIATION
Reconciliation with closure of the current period, without any Acquirers synchronisation.
|
| Modifier and Type | Method and Description |
|---|---|
static ReconciliationType |
fromValue(String v)
From value reconciliation type.
|
String |
value()
Value string.
|
static ReconciliationType |
valueOf(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.
|
public static final ReconciliationType SALE_RECONCILIATION
public static final ReconciliationType ACQUIRER_SYNCHRONISATION
public static final ReconciliationType ACQUIRER_RECONCILIATION
public static final ReconciliationType PREVIOUS_RECONCILIATION
public static ReconciliationType[] values()
for (ReconciliationType c : ReconciliationType.values()) System.out.println(c);
public static ReconciliationType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static ReconciliationType fromValue(String v)
v - the vCopyright © 2022. All rights reserved.