public enum DataFlavour extends Enum<DataFlavour>
| Enum Constant and Description |
|---|
DUMMY_TEXT
for testing purposes: this is not going to be used by normal methods
|
PURE_OBJECT_TREE
only the object tree that can be fed to startup code.
|
TREE_FROM_SOURCE
an object that contains both the text source code and the "object tree" used by startup
|
| Modifier and Type | Method and Description |
|---|---|
static DataFlavour |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataFlavour[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DataFlavour DUMMY_TEXT
public static final DataFlavour TREE_FROM_SOURCE
public static final DataFlavour PURE_OBJECT_TREE
public static DataFlavour[] values()
for (DataFlavour c : DataFlavour.values()) System.out.println(c);
public static DataFlavour 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 © 2015 LSST. All rights reserved.