public enum DatabaseServerErrors extends Enum<DatabaseServerErrors> implements org.mule.runtime.extension.api.error.ErrorTypeDefinition<DatabaseServerErrors>
| Enum Constant and Description |
|---|
DATABASE_SERVER_ERROR
Error thrown when there is a failure executing a query.
|
| Modifier and Type | Method and Description |
|---|---|
static DatabaseServerErrors |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseServerErrors[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseServerErrors DATABASE_SERVER_ERROR
public static DatabaseServerErrors[] values()
for (DatabaseServerErrors c : DatabaseServerErrors.values()) System.out.println(c);
public static DatabaseServerErrors 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 © 2018 MuleSoft, Inc.. All rights reserved.