RefType.java

Go to the documentation of this file.
00001 package cedar.hepdata.model;
00002 
00003 public enum RefType {
00004     ARXIV   ("arXiv"),
00005     JOURNAL ("journal"),
00006     UNKNOWN ("unknown");
00007     private final String name;
00008     RefType(String name) { this.name = name; }
00009     public String toString() { return name; }
00010 }

Generated on Tue Apr 21 15:54:38 2009 for HepData object model by  doxygen 1.5.5