|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<ErrorCodeType>
net.opengis.ols.v_1_2.ErrorCodeType
public enum ErrorCodeType
Java class for ErrorCodeType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ErrorCodeType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="RequestVersionMismatch"/>
<enumeration value="ValueNotRecognized"/>
<enumeration value="NotSupported"/>
<enumeration value="Inconsistent"/>
<enumeration value="DeliveryFailure"/>
<enumeration value="SecurityFailure"/>
<enumeration value="NoResultsReturned"/>
<enumeration value="TimedOut"/>
<enumeration value="InternalServerError"/>
<enumeration value="DataNotAvailable"/>
<enumeration value="Unknown"/>
</restriction>
</simpleType>
| Enum Constant Summary | |
|---|---|
DATA_NOT_AVAILABLE
The server does not have data coverage. |
|
DELIVERY_FAILURE
Message Delivery Failure. |
|
INCONSISTENT
Element content or attribute value inconsistent with other elements or attributes. |
|
INTERNAL_SERVER_ERROR
An error has occurred inside the server. |
|
NO_RESULTS_RETURNED
The inputs were correct but didn’t produce a result. |
|
NOT_SUPPORTED
Element or attribute not supported. |
|
REQUEST_VERSION_MISMATCH
Version of Request Schema not supported. |
|
SECURITY_FAILURE
Message Security Checks Failed. |
|
TIMED_OUT
The operation timed out on the server side. |
|
UNKNOWN
Unknown Error. |
|
VALUE_NOT_RECOGNIZED
Element content or attribute value not recognized. |
|
| Method Summary | |
|---|---|
static ErrorCodeType |
fromValue(String v)
|
String |
value()
|
static ErrorCodeType |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static ErrorCodeType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final ErrorCodeType REQUEST_VERSION_MISMATCH
public static final ErrorCodeType VALUE_NOT_RECOGNIZED
public static final ErrorCodeType NOT_SUPPORTED
public static final ErrorCodeType INCONSISTENT
public static final ErrorCodeType DELIVERY_FAILURE
public static final ErrorCodeType SECURITY_FAILURE
public static final ErrorCodeType NO_RESULTS_RETURNED
public static final ErrorCodeType TIMED_OUT
public static final ErrorCodeType INTERNAL_SERVER_ERROR
public static final ErrorCodeType DATA_NOT_AVAILABLE
public static final ErrorCodeType UNKNOWN
| Method Detail |
|---|
public static ErrorCodeType[] values()
for (ErrorCodeType c : ErrorCodeType.values()) System.out.println(c);
public static ErrorCodeType valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is nullpublic String value()
public static ErrorCodeType fromValue(String v)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||