public static enum FitsTableWriter.VarArrayMode extends java.lang.Enum<FitsTableWriter.VarArrayMode>
Enum Constant and Description |
---|
FALSE
All arrays are stored as fixed-length in the body of the table.
|
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.
|
TRUE
Variable-length arrays are stored on the heap,
using a suitable pointer size for indirection.
|
Modifier and Type | Method and Description |
---|---|
static FitsTableWriter.VarArrayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FitsTableWriter.VarArrayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FitsTableWriter.VarArrayMode FALSE
public static final FitsTableWriter.VarArrayMode TRUE
public static final FitsTableWriter.VarArrayMode P
public static final FitsTableWriter.VarArrayMode Q
public static FitsTableWriter.VarArrayMode[] values()
for (FitsTableWriter.VarArrayMode c : FitsTableWriter.VarArrayMode.values()) System.out.println(c);
public static FitsTableWriter.VarArrayMode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null