de.fraunhofer.ipsi.xquery.errors
Enum StaticError

java.lang.Object
  extended by java.lang.Enum<StaticError>
      extended by de.fraunhofer.ipsi.xquery.errors.StaticError
All Implemented Interfaces:
ErrorDescription, java.io.Serializable, java.lang.Comparable<StaticError>

public enum StaticError
extends java.lang.Enum<StaticError>
implements ErrorDescription


Enum Constant Summary
ATOMIC_TYPE_NOT_FOUND
           
AXIS_NOT_SUPPORTED
           
COULD_NOT_IMPORT_SCHEMA
           
EMPTY_NAMESPACE
           
FUNCTION_ALREADY_DECLARED
           
FUNCTION_NOT_FOUND
           
IMPORTED_FUNCTION_ALREADY_DECLARED
           
IMPORTED_VARIABLE_ALREADY_DECLARED
           
INVALID_CONTENT_SEQUENCE
           
INVALID_OPTION_VALUE
           
MODULE_NOT_FOUND
           
MORE_THAN_ONE_BASE_URI
           
MORE_THAN_ONE_COPY_NS_DECL
           
MORE_THAN_ONE_DEFAULT_COLLATION
           
MORE_THAN_ONE_DEFAULT_CONSTRUCTION
           
MORE_THAN_ONE_DEFAULT_NS
           
MORE_THAN_ONE_DEFAULT_ORDERING
           
MORE_THAN_ONE_EMPTY_ORDER_DECL
           
MORE_THAN_ONE_MODULE_IMPORT
           
MORE_THAN_ONE_NSDECL_FOR_PREFIX
           
MORE_THAN_ONE_SCHEMA_IMPORT
           
NAMESPACE_NOT_LITERAL
           
NON_DISTINCT_ATTRIBUTE_NAMES
           
PARAMETER_NAME_ALREADY_USED
           
PARSE_ERROR
           
PREFIX_NOT_DECLARED
           
PREFIX_NOT_FOUND
           
PREFIX_TO_EMPTY_NS
           
PROTECTED_PREFIX_REDECLARED
           
SCHEMA_NOT_FOUND
           
TYPE_ALREADY_DECLARED
           
TYPE_NOT_FOUND
           
UNCOMPLETE_EXTENSION
           
UNKNOWN_COLLATION
           
UNSUPPORTED_VERSION
           
VARIABLE_ALREADY_DECLARED
           
VARIABLE_NOT_INSCOPE
           
WRONG_NAMESPACE
           
WRONG_NAMESPACE_FOR_MODULE
           
WRONG_PARAMETER_COUNT
           
 
Method Summary
 java.lang.String getCode()
          Method getCode
 java.lang.String getDetailMessage()
          Method getDetailMessage
 java.lang.String getShortMessage()
          Method getMessage
 java.lang.String getSpecificationLabel()
          Method getSpecificationLabel
 java.lang.String getSpecificationURI()
          Method getSpecificationURI
static StaticError valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static StaticError[] values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

PARSE_ERROR

public static final StaticError PARSE_ERROR

VARIABLE_NOT_INSCOPE

public static final StaticError VARIABLE_NOT_INSCOPE

PREFIX_NOT_FOUND

public static final StaticError PREFIX_NOT_FOUND

TYPE_NOT_FOUND

public static final StaticError TYPE_NOT_FOUND

AXIS_NOT_SUPPORTED

public static final StaticError AXIS_NOT_SUPPORTED

COULD_NOT_IMPORT_SCHEMA

public static final StaticError COULD_NOT_IMPORT_SCHEMA

WRONG_PARAMETER_COUNT

public static final StaticError WRONG_PARAMETER_COUNT

FUNCTION_NOT_FOUND

public static final StaticError FUNCTION_NOT_FOUND

NAMESPACE_NOT_LITERAL

public static final StaticError NAMESPACE_NOT_LITERAL

UNSUPPORTED_VERSION

public static final StaticError UNSUPPORTED_VERSION

MORE_THAN_ONE_BASE_URI

public static final StaticError MORE_THAN_ONE_BASE_URI

MORE_THAN_ONE_NSDECL_FOR_PREFIX

public static final StaticError MORE_THAN_ONE_NSDECL_FOR_PREFIX

FUNCTION_ALREADY_DECLARED

public static final StaticError FUNCTION_ALREADY_DECLARED

TYPE_ALREADY_DECLARED

public static final StaticError TYPE_ALREADY_DECLARED

IMPORTED_VARIABLE_ALREADY_DECLARED

public static final StaticError IMPORTED_VARIABLE_ALREADY_DECLARED

IMPORTED_FUNCTION_ALREADY_DECLARED

public static final StaticError IMPORTED_FUNCTION_ALREADY_DECLARED

UNKNOWN_COLLATION

public static final StaticError UNKNOWN_COLLATION

MORE_THAN_ONE_DEFAULT_COLLATION

public static final StaticError MORE_THAN_ONE_DEFAULT_COLLATION

PARAMETER_NAME_ALREADY_USED

public static final StaticError PARAMETER_NAME_ALREADY_USED

NON_DISTINCT_ATTRIBUTE_NAMES

public static final StaticError NON_DISTINCT_ATTRIBUTE_NAMES

INVALID_CONTENT_SEQUENCE

public static final StaticError INVALID_CONTENT_SEQUENCE

WRONG_NAMESPACE

public static final StaticError WRONG_NAMESPACE

MORE_THAN_ONE_MODULE_IMPORT

public static final StaticError MORE_THAN_ONE_MODULE_IMPORT

WRONG_NAMESPACE_FOR_MODULE

public static final StaticError WRONG_NAMESPACE_FOR_MODULE

VARIABLE_ALREADY_DECLARED

public static final StaticError VARIABLE_ALREADY_DECLARED

ATOMIC_TYPE_NOT_FOUND

public static final StaticError ATOMIC_TYPE_NOT_FOUND

MORE_THAN_ONE_COPY_NS_DECL

public static final StaticError MORE_THAN_ONE_COPY_NS_DECL

PREFIX_TO_EMPTY_NS

public static final StaticError PREFIX_TO_EMPTY_NS

MORE_THAN_ONE_SCHEMA_IMPORT

public static final StaticError MORE_THAN_ONE_SCHEMA_IMPORT

MODULE_NOT_FOUND

public static final StaticError MODULE_NOT_FOUND

SCHEMA_NOT_FOUND

public static final StaticError SCHEMA_NOT_FOUND

EMPTY_NAMESPACE

public static final StaticError EMPTY_NAMESPACE

MORE_THAN_ONE_DEFAULT_ORDERING

public static final StaticError MORE_THAN_ONE_DEFAULT_ORDERING

MORE_THAN_ONE_DEFAULT_NS

public static final StaticError MORE_THAN_ONE_DEFAULT_NS

MORE_THAN_ONE_DEFAULT_CONSTRUCTION

public static final StaticError MORE_THAN_ONE_DEFAULT_CONSTRUCTION

MORE_THAN_ONE_EMPTY_ORDER_DECL

public static final StaticError MORE_THAN_ONE_EMPTY_ORDER_DECL

PROTECTED_PREFIX_REDECLARED

public static final StaticError PROTECTED_PREFIX_REDECLARED

UNCOMPLETE_EXTENSION

public static final StaticError UNCOMPLETE_EXTENSION

PREFIX_NOT_DECLARED

public static final StaticError PREFIX_NOT_DECLARED

INVALID_OPTION_VALUE

public static final StaticError INVALID_OPTION_VALUE
Method Detail

values

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

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

valueOf

public static StaticError valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name

getCode

public java.lang.String getCode()
Method getCode

Specified by:
getCode in interface ErrorDescription
Returns:
a String

getShortMessage

public java.lang.String getShortMessage()
Method getMessage

Specified by:
getShortMessage in interface ErrorDescription
Returns:
a String

getDetailMessage

public java.lang.String getDetailMessage()
Method getDetailMessage

Specified by:
getDetailMessage in interface ErrorDescription
Returns:
a String

getSpecificationLabel

public java.lang.String getSpecificationLabel()
Method getSpecificationLabel

Specified by:
getSpecificationLabel in interface ErrorDescription
Returns:
a String

getSpecificationURI

public java.lang.String getSpecificationURI()
Method getSpecificationURI

Specified by:
getSpecificationURI in interface ErrorDescription
Returns:
a String