public enum ODataError extends Enum<ODataError> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<ODataError>
| Enum Constant and Description |
|---|
DESERIALIZATION
Generic error for deserialization issues.
|
EXPANSION
Generic error for issues during expansion
|
INTERNAL_SERVER_ERROR
Generic error for internal server issues.
|
MALFORMED_SEARCH
Request $search expression in URI is invalid.
|
MALFORMED_URI
Request URI is invalid.
|
NOT_FOUND
Generic error for not found.
|
NOT_IMPLEMENTED
Requested service, feature or operation is not implemented.
|
SERIALIZATION
Generic error for serialization issues.
|
TRANSFORMATION
Generic error for issues related to URI to SQL transformations.
|
| Modifier and Type | Method and Description |
|---|---|
static ODataError |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ODataError[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ODataError NOT_IMPLEMENTED
public static final ODataError MALFORMED_URI
public static final ODataError MALFORMED_SEARCH
public static final ODataError SERIALIZATION
public static final ODataError DESERIALIZATION
public static final ODataError TRANSFORMATION
public static final ODataError INTERNAL_SERVER_ERROR
public static final ODataError NOT_FOUND
public static final ODataError EXPANSION
public static ODataError[] values()
for (ODataError c : ODataError.values()) System.out.println(c);
public static ODataError 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 nullCopyright © 2024 MuleSoft, Inc.. All rights reserved.