1 package org.lsst.ccs.config;
2
3 /**
4 * Data type used to store Subsystem descriptions.
5 */
6 public enum DataFlavour {
7 /**
8 * for testing purposes: this is not going to be used by normal methods
9 */
10 DUMMY_TEXT,
11 /**
12 * an object that contains both the text source code and the "object tree" used by startup
13 */
14 TREE_FROM_SOURCE,
15 /**
16 * only the object tree that can be fed to startup code.
17 */
18 PURE_OBJECT_TREE ;
19 }