View Javadoc
1   package ca.uhn.hl7v2.sourcegen.conf;
2   
3   /**
4    * Enum class to specify whether custom data type classes should be generated
5    */
6   public enum GenerateDataTypesEnum {
7   
8       /** No data types should be generated */
9       NONE,
10      
11      /** A single instance of each data type will be generated */
12      SINGLE,
13  
14      /** Individual datatypes should be made for each spot they are used */
15      ALL
16      
17  }