Relation.java

Go to the documentation of this file.
00001 package cedar.hepdata.model;
00002 
00003 public enum Relation {
00004     EQUALS        ("="),
00005     GREATER       (">"),
00006     LESS          ("<"),
00007     GREATEREQUALS (">="),
00008     LESSEQUALS    ("<=");
00009     private final String name;
00010     Relation(String name) { this.name = name; }
00011     public String toString() { return name; }
00012 }

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