1 24 package org.objectweb.jalisto.se.impl.meta.comparator; 25 26 public class IntegerComparator extends DefaultComparator { 27 28 public boolean greater(Object candidate, Object value) { 29 return ((Integer ) candidate).intValue() > ((Integer ) value).intValue(); 30 } 31 32 public boolean smaller(Object candidate, Object value) { 33 return ((Integer ) candidate).intValue() < ((Integer ) value).intValue(); 34 } 35 36 static final long serialVersionUID = -7589301156964761459L; 37 } 38 | Popular Tags |