public static enum Psimu.StorageType extends Enum<Psimu.StorageType>
Enum Constant and Description |
---|
FILE_COLUMNS
Outputs are stored in ascii in an sqlite database.
|
FILE_SC_BINARY
Outputs are stored in ascii and binary format in a sqlite database.
|
MEMORY
Output spacecraft states are stored in a list in memory.
|
Modifier and Type | Method and Description |
---|---|
static Psimu.StorageType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Psimu.StorageType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Psimu.StorageType MEMORY
public static final Psimu.StorageType FILE_SC_BINARY
public static final Psimu.StorageType FILE_COLUMNS
public static Psimu.StorageType[] values()
for (Psimu.StorageType c : Psimu.StorageType.values()) System.out.println(c);
public static Psimu.StorageType 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 © 2017. All rights reserved.