ReadAdvice
Advice regarding the read access pattern.
Entries
Data is expected to be read in a random-access fashion, either by seeking often and reading relatively short sequences of bytes at once, or by reading data through the RandomAccessInput abstraction in random order.
Data is expected to be read sequentially with very little seeking at most. The system may read ahead aggressively and free pages soon after they are accessed.
Data is treated as random-access memory in practice. Directory implementations may explicitly load the content of the file in memory, or provide hints to the system so that it loads the content of the file into the page cache at open time. This should only be used on very small files that can be expected to fit in RAM with very high confidence.
Properties
Functions
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.)
Returns an array containing the constants of this enum type, in the order they're declared.