public enum ReconciliationImportErrorReason extends Enum<ReconciliationImportErrorReason>
Java class for ReconciliationImportError.Reason.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ReconciliationImportError.Reason">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="MISSING_EDITABLE_COLUMN"/>
<enumeration value="INCONSISTENT_IMPORT_COLUMNS"/>
<enumeration value="COLUMN_CONVERSION_TYPE_ERROR"/>
<enumeration value="INCONSISTENT_COLUMNS_COUNT"/>
<enumeration value="IMPORT_INTERNAL_ERROR"/>
<enumeration value="UNKNOWN"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
COLUMN_CONVERSION_TYPE_ERROR
The imported CSV column value cannot be converted to defined entity type.
|
IMPORT_INTERNAL_ERROR
The imported CSV cause an internal error which is out of expectation.
|
INCONSISTENT_COLUMNS_COUNT
The imported CSV column values count are less or more than field headers count.
|
INCONSISTENT_IMPORT_COLUMNS
The imported CSV columns count doesn't equal with defined columns count.
|
MISSING_EDITABLE_COLUMN
The imported CSV missing some editable and essential columns.
|
UNKNOWN
The value returned if the actual value is not exposed by the requested API version.
|
| Modifier and Type | Method and Description |
|---|---|
static ReconciliationImportErrorReason |
fromValue(String v) |
String |
value() |
static ReconciliationImportErrorReason |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReconciliationImportErrorReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReconciliationImportErrorReason MISSING_EDITABLE_COLUMN
public static final ReconciliationImportErrorReason INCONSISTENT_IMPORT_COLUMNS
public static final ReconciliationImportErrorReason COLUMN_CONVERSION_TYPE_ERROR
public static final ReconciliationImportErrorReason INCONSISTENT_COLUMNS_COUNT
public static final ReconciliationImportErrorReason IMPORT_INTERNAL_ERROR
public static final ReconciliationImportErrorReason UNKNOWN
public static ReconciliationImportErrorReason[] values()
for (ReconciliationImportErrorReason c : ReconciliationImportErrorReason.values()) System.out.println(c);
public static ReconciliationImportErrorReason 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 ReconciliationImportErrorReason fromValue(String v)
Copyright © 2018. All Rights Reserved.