summaryrefslogtreecommitdiff
path: root/doc/classes/File.xml
diff options
context:
space:
mode:
Diffstat (limited to 'doc/classes/File.xml')
-rw-r--r--doc/classes/File.xml16
1 files changed, 8 insertions, 8 deletions
diff --git a/doc/classes/File.xml b/doc/classes/File.xml
index d26ae84467..8c270ece4b 100644
--- a/doc/classes/File.xml
+++ b/doc/classes/File.xml
@@ -394,28 +394,28 @@
</method>
</methods>
<constants>
- <constant name="READ" value="1">
+ <constant name="READ" value="1" enum="ModeFlags">
Opens the file for read operations.
</constant>
- <constant name="WRITE" value="2">
+ <constant name="WRITE" value="2" enum="ModeFlags">
Opens the file for write operations. Create it if the file does not exist and truncate if it exists.
</constant>
- <constant name="READ_WRITE" value="3">
+ <constant name="READ_WRITE" value="3" enum="ModeFlags">
Opens the file for read and write operations. Does not truncate the file.
</constant>
- <constant name="WRITE_READ" value="7">
+ <constant name="WRITE_READ" value="7" enum="ModeFlags">
Opens the file for read and write operations. Create it if the file does not exist and truncate if it exists.
</constant>
- <constant name="COMPRESSION_FASTLZ" value="0">
+ <constant name="COMPRESSION_FASTLZ" value="0" enum="CompressionMode">
Uses the FastLZ compression method.
</constant>
- <constant name="COMPRESSION_DEFLATE" value="1">
+ <constant name="COMPRESSION_DEFLATE" value="1" enum="CompressionMode">
Uses the Deflate compression method.
</constant>
- <constant name="COMPRESSION_ZSTD" value="2">
+ <constant name="COMPRESSION_ZSTD" value="2" enum="CompressionMode">
Uses the Zstd compression method.
</constant>
- <constant name="COMPRESSION_GZIP" value="3">
+ <constant name="COMPRESSION_GZIP" value="3" enum="CompressionMode">
Uses the gzip compression method.
</constant>
</constants>