예제 #1
0
 public boolean ge(EnumerationFactory e) { // ">="
   return this.getPos() >= e.getPos();
 }
예제 #2
0
 public boolean le(EnumerationFactory e) { // "<="
   return this.getPos() <= e.getPos();
 }
예제 #3
0
 public boolean gt(EnumerationFactory e) { // ">"
   return this.getPos() > e.getPos();
 }
예제 #4
0
 /**
  * Order relations Object.op (OtherObject) representing the relation Object op OtherObject.
  *
  * @param e the right operand
  */
 public boolean lt(EnumerationFactory e) { // "<"
   return this.getPos() < e.getPos();
 }