org.n52.oxf.ows
Enum OwsExceptionCode

java.lang.Object
  extended by java.lang.Enum<OwsExceptionCode>
      extended by org.n52.oxf.ows.OwsExceptionCode
All Implemented Interfaces:
Serializable, Comparable<OwsExceptionCode>

public enum OwsExceptionCode
extends Enum<OwsExceptionCode>


Enum Constant Summary
InvalidParameterValue
           
InvalidRequest
           
InvalidUpdateSequence
           
MissingParameterValue
           
NoApplicableCode
           
NoDataAvailable
           
OperationNotSupported
           
VersionNegotiationFailed
           
 
Method Summary
static OwsExceptionCode valueOf(String name)
          Returns the enum constant of this type with the specified name.
static OwsExceptionCode[] 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

OperationNotSupported

public static final OwsExceptionCode OperationNotSupported

MissingParameterValue

public static final OwsExceptionCode MissingParameterValue

InvalidParameterValue

public static final OwsExceptionCode InvalidParameterValue

VersionNegotiationFailed

public static final OwsExceptionCode VersionNegotiationFailed

InvalidUpdateSequence

public static final OwsExceptionCode InvalidUpdateSequence

NoApplicableCode

public static final OwsExceptionCode NoApplicableCode

NoDataAvailable

public static final OwsExceptionCode NoDataAvailable

InvalidRequest

public static final OwsExceptionCode InvalidRequest
Method Detail

values

public static OwsExceptionCode[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (OwsExceptionCode c : OwsExceptionCode.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static OwsExceptionCode valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null


Copyright © 2012-2013 52north.org. All Rights Reserved.