Enum Class LengthOption
- All Implemented Interfaces:
Serializable
,Comparable<LengthOption>
,Constable
Options when setting the file length.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAlways attempt to preallocate, even if it's expensive.Never attempt to preallocate when the file length increases.Only attempt to preallocate if it can be done quickly. -
Method Summary
Modifier and TypeMethodDescriptionstatic LengthOption
Returns the enum constant of this class with the specified name.static LengthOption[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
PREALLOCATE_NEVER
Never attempt to preallocate when the file length increases. -
PREALLOCATE_OPTIONAL
Only attempt to preallocate if it can be done quickly. -
PREALLOCATE_ALWAYS
Always attempt to preallocate, even if it's expensive.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-