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