View Javadoc

1   // Copyright 2006-2007, by the California Institute of Technology.
2   // ALL RIGHTS RESERVED. United States Government Sponsorship acknowledged.
3   // Any commercial use must be negotiated with the Office of Technology Transfer
4   // at the California Institute of Technology.
5   //
6   // This software is subject to U. S. export control laws and regulations
7   // (22 C.F.R. 120-130 and 15 C.F.R. 730-774). To the extent that the software
8   // is subject to U.S. export control laws and regulations, the recipient has
9   // the responsibility to obtain export licenses or other export authority as
10  // may be required before exporting such information to foreign countries or
11  // providing access to foreign nationals.
12  //
13  // $Id: Types.java 2601 2007-04-12 18:34:25Z pramirez $ 
14  //
15  
16  package gov.nasa.pds.tools.dict.type;
17  
18  /***
19   * @author pramirez
20   * @version $Revision: 2601 $
21   * 
22   */
23  public interface Types {
24      public final static String INTEGER = "INTEGER";
25      public final static String CHARACTER = "CHARACTER";
26      public final static String REAL = "REAL";
27      public final static String IDENTIFIER = "IDENTIFIER";
28      public final static String TIME = "TIME";
29      public final static String DATE = "DATE";
30      public final static String CONTEXT_DEPENDENT = "CONTEXT_DEPENDENT";
31      public final static String CONTEXTDEPENDENT = "CONTEXTDEPENDENT";
32      public final static String NONDECIMAL = "NONDECIMAL";
33      public final static String NON_DECIMAL = "NON_DECIMAL";
34      public final static String DOUBLE = "DOUBLE";
35      public final static String EXPONENTIAL = "EXPONENTIAL";
36      public final static String BIBLIO = "BIBLIO";
37      public final static String ASCII_INTEGER = "ASCII_INTEGER";
38      public final static String ALPHABET = "ALPHABET";
39      public final static String ALPHANUMERIC = "ALPHANUMERIC";
40      public final static String DATA_SET = "DATA_SET";
41  }