Go to the source code of this file.
|  | 
| const long | READ = 1 | 
|  | specifies opening of an element for reading. 
 | 
|  | 
| const long | SEEKABLE = 2 | 
|  | specifies opening of a seekable element. 
 | 
|  | 
| const long | SEEKABLEREAD = 3 | 
|  | specifies opening of a seekable element for reading. 
 | 
|  | 
| const long | WRITE = 4 | 
|  | specifies opening of an element for writing. 
 | 
|  | 
| const long | READWRITE = 7 | 
|  | specifies opening of an element for reading and writing. 
 | 
|  | 
| const long | TRUNCATE = 8 | 
|  | lets the document be truncated immediately after opening. 
 | 
|  | 
| const long | NOCREATE = 16 | 
|  | restricts creation of a new element on opening in case a requested one does not exist. 
 | 
|  |