public static enum FitsTableWriter.VarArrayMode extends 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(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(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 Central Laboratory of the Research Councils. All Rights Reserved.