ReturnCode return code of TIXI-routines. Has a typedef to ReturnCode.
| Enumerator |
|---|
| SUCCESS | 0: No error occurred
|
| FAILED | 1: Unspecified error
|
| INVALID_XML_NAME | 2: Non XML standard compliant name specified
|
| NOT_WELL_FORMED | 3: Document is not well formed
|
| NOT_SCHEMA_COMPLIANT | 4: Document is not schema compliant
|
| NOT_DTD_COMPLIANT | 5: Document is not DTD compliant
|
| INVALID_HANDLE | 6: Document handle is not valid
|
| INVALID_XPATH | 7: XPath expression is not valid
|
| ELEMENT_NOT_FOUND | 8: Element does not exist in document
|
| INDEX_OUT_OF_RANGE | 9: Index supplied as argument is not inside the admissible range
|
| NO_POINT_FOUND | 10: No point element found a given XPath
|
| NOT_AN_ELEMENT | 11: XPath expression does not point to an XML-element node
|
| ATTRIBUTE_NOT_FOUND | 12: Element does not have the attribute
|
| OPEN_FAILED | 13: Error on opening the file
|
| OPEN_SCHEMA_FAILED | 14: Error on opening the schema file
|
| OPEN_DTD_FAILED | 15: Error on opening the DTD file
|
| CLOSE_FAILED | 16: Error on closing the file
|
| ALREADY_SAVED | 17: Trying to modify already saved document
|
| ELEMENT_PATH_NOT_UNIQUE | 18: Path expression can not be resolved unambiguously
|
| NO_ELEMENT_NAME | 19: Element name argument is NULL
|
| NO_CHILDREN | 20: Node has no children
|
| CHILD_NOT_FOUND | 21: Named child is not child of element specified
|
| EROROR_CREATE_ROOT_NODE | 22: Error when adding root node to new document
|
| DEALLOCATION_FAILED | 23: On closing a document the deallocation of allocated memory fails
|
| NO_NUMBER | 24: No number specified
|
| NO_ATTRIBUTE_NAME | 25: No attribute name specified
|
| STRING_TRUNCATED | 26: String variable supplied is to small to hold the result, Fortran only
|
| NON_MATCHING_NAME | 27: Row or column name specified do not match the names used in the document
|
| NON_MATCHING_SIZE | 28: Number of rows or columns specified do not match the sizes of the matrix in the document
|
| MATRIX_DIMENSION_ERROR | 29: if nRows or nColumns or both are less than 1
|
| COORDINATE_NOT_FOUND | 30: missing coordinate inside a point element
|
| UNKNOWN_STORAGE_MODE | 31: storage mode specified is neither ROW_WISE nor COLUMN_WISE
|
| UID_NOT_UNIQUE | 32: One or more uID's are not unique
|
| UID_DONT_EXISTS | 33: A given uID's does not exist
|
| UID_LINK_BROKEN | 34: A node the is specified as a Link has no correspoding uid in that data set
|
| INVALID_NAMESPACE_URI | 35: The namespace URI is invalid (e.g. a null pointer)
|
| INVALID_NAMESPACE_PREFIX | 36: The namespace prefix is invalid
|