public enum ImportActionResult extends java.lang.Enum<ImportActionResult>
Enum Constant and Description |
---|
CREATED
The entity was created
|
DATALIST_HAS_NO_PROPERTIES_ERROR
A data list in the request has no properties defined in it.
|
DATALIST_WITHOUT_KEYS_ERROR
A data list has been defined without any properties marked as a key.
|
DUPLICATE_ENTITIES_ERROR
The import failed because the entity is duplicated already based on the key property or properties.
|
ENTITY_WITHOUT_KEYS_ERROR
The entity has no property defined as a key
|
NO_DEFAULT_DATA_ELEMENT_ERROR
There were no data elements that were marked as the default data element by having a null or empty Name value.
|
NO_MATCHING_VIEW_FOUND_ERROR
There was no matching view for the entity specified in the import request
|
NO_VALUE_FOR_KEY_PROPERTY_ERROR
A non-nullable key property had no value
|
NO_VALUE_FOR_REQUIRED_PROPERTY_ERROR
A required property had no value
|
NO_VALUE_STOREID_PROPERTY_ERROR
The import failed because the storeId property that was defined does not have a value.
|
SKIPPED_BECAUSE_CONDITION_IS_FALSE
The entity was skipped because the Entity's UpdateCondition evaluated to false
|
SKIPPED_BECAUSE_NO_CHANGES
The entity was not updated because were no changes
|
SKIPPED_BECAUSE_RECORD_ALREADY_EXISTS
The entity was skipped because the record already exists
|
SKIPPED_BECAUSE_RECORD_DOES_NOT_EXIST
The entity was skipped because record does not exist
|
UNKNOWN |
UPDATE_CONDITION_EVALUATION_FAILED_ERROR
An exception occurred when evaluating the UpdateCondition specified in the import request.
|
UPDATED
The entity was updated
|
VARIABLE_DID_NOT_RESOLVE_ERROR
The variable did not resolve to a value and the variable's "must resolve" property was true.
|
VARIABLE_HAS_NOT_BEEN_RESOLVED_YET_ERROR
The variable has not been resolved yet error
|
VARIABLE_NOT_DEFINED_ERROR
A variable used in the request was not defined
|
VARIABLE_WITHOUT_MATCHES_ERROR
A property in the request does not match up with any of the variables defined in the request.
|
VARIABLES_WITH_DUPLICATE_ENTITIES_ERROR
A variable could not be resolved because more than one entities were found for it.
|
Modifier and Type | Method and Description |
---|---|
static ImportActionResult |
fromValue(java.lang.String v) |
java.lang.String |
value() |
static ImportActionResult |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ImportActionResult[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ImportActionResult UNKNOWN
public static final ImportActionResult CREATED
public static final ImportActionResult UPDATED
public static final ImportActionResult SKIPPED_BECAUSE_RECORD_DOES_NOT_EXIST
public static final ImportActionResult SKIPPED_BECAUSE_RECORD_ALREADY_EXISTS
public static final ImportActionResult SKIPPED_BECAUSE_NO_CHANGES
public static final ImportActionResult SKIPPED_BECAUSE_CONDITION_IS_FALSE
public static final ImportActionResult NO_VALUE_FOR_KEY_PROPERTY_ERROR
public static final ImportActionResult NO_VALUE_FOR_REQUIRED_PROPERTY_ERROR
public static final ImportActionResult ENTITY_WITHOUT_KEYS_ERROR
public static final ImportActionResult VARIABLE_WITHOUT_MATCHES_ERROR
public static final ImportActionResult VARIABLES_WITH_DUPLICATE_ENTITIES_ERROR
public static final ImportActionResult NO_MATCHING_VIEW_FOUND_ERROR
public static final ImportActionResult VARIABLE_NOT_DEFINED_ERROR
public static final ImportActionResult DATALIST_HAS_NO_PROPERTIES_ERROR
public static final ImportActionResult DATALIST_WITHOUT_KEYS_ERROR
public static final ImportActionResult UPDATE_CONDITION_EVALUATION_FAILED_ERROR
public static final ImportActionResult NO_DEFAULT_DATA_ELEMENT_ERROR
public static final ImportActionResult DUPLICATE_ENTITIES_ERROR
public static final ImportActionResult NO_VALUE_STOREID_PROPERTY_ERROR
public static final ImportActionResult VARIABLE_HAS_NOT_BEEN_RESOLVED_YET_ERROR
public static final ImportActionResult VARIABLE_DID_NOT_RESOLVE_ERROR
public static ImportActionResult[] values()
for (ImportActionResult c : ImportActionResult.values()) System.out.println(c);
public static ImportActionResult valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String value()
public static ImportActionResult fromValue(java.lang.String v)