Package uk.ac.starlink.fits
Enum Class FitsTableWriter.VarArrayMode
- All Implemented Interfaces:
Serializable
,Comparable<FitsTableWriter.VarArrayMode>
,Constable
- Enclosing class:
FitsTableWriter
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionAll arrays are stored as fixed-length in the body of the table.Variable-length arrays are stored on the heap, using a 32-bit pointer size ('P' array descriptor) for indirection.Variable-length arrays are stored on the heap, using a 64-bit pointer size ('Q' array descriptor) for indirection.Variable-length arrays are stored on the heap, using a suitable pointer size for indirection. -
Method Summary
Modifier and TypeMethodDescriptionstatic FitsTableWriter.VarArrayMode
Returns the enum constant of this class with the specified name.static FitsTableWriter.VarArrayMode[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
FALSE
All arrays are stored as fixed-length in the body of the table. -
TRUE
Variable-length arrays are stored on the heap, using a suitable pointer size for indirection. -
P
Variable-length arrays are stored on the heap, using a 32-bit pointer size ('P' array descriptor) for indirection. -
Q
Variable-length arrays are stored on the heap, using a 64-bit pointer size ('Q' array descriptor) for indirection.
-
-
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
-