58 lines
1.9 KiB
Java
58 lines
1.9 KiB
Java
|
|
/*
|
||
|
|
* SegmentComparator.java 2005-05-12
|
||
|
|
*
|
||
|
|
* Dirk Ansorge, FernUniversitaet Hagen
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
package twodsack.util.comparator;
|
||
|
|
|
||
|
|
import twodsack.setelement.datatype.*;
|
||
|
|
import twodsack.setelement.datatype.basicdatatype.*;
|
||
|
|
import twodsack.util.collectiontype.*;
|
||
|
|
import java.util.*;
|
||
|
|
import java.io.*;
|
||
|
|
|
||
|
|
|
||
|
|
/**
|
||
|
|
* A SegmentComparator is used wherever objects of type {@link Segment} shall be inserted in a sorted set working with objects of type MultiSetEntry.
|
||
|
|
* Then, in the constructor an instance of this class is needed. It sorts the Segment objects by calling the <tt>Segment.compare()</tt> method.
|
||
|
|
*/
|
||
|
|
public class SegmentComparator implements Comparator,Serializable {
|
||
|
|
/*
|
||
|
|
* constructors
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* The standard constructor.
|
||
|
|
*/
|
||
|
|
public SegmentComparator(){}
|
||
|
|
|
||
|
|
/*
|
||
|
|
* methods
|
||
|
|
*/
|
||
|
|
/**
|
||
|
|
* Compares both objects and returns one of {0, 1, -1}.
|
||
|
|
* Calls the <tt>compare()</tt> method for two {@link Segment} values stored in {@link MultiSetEntry} types.<p>
|
||
|
|
* Returns 0, if both segments are equal.<p>
|
||
|
|
* Returns -1, if <tt>ino1.o</tt> is smaller than <tt>ino2.o</tt>.<p>
|
||
|
|
* Returns 1 otherwise.
|
||
|
|
*
|
||
|
|
* @param ino1 the first object
|
||
|
|
* @param ino2 the second object
|
||
|
|
* @return one of {0, 1, -1} as int
|
||
|
|
* @throws WrongTypeException if one of <tt>ino1.o,ino2.o</tt> is not of type Segment
|
||
|
|
*/
|
||
|
|
public int compare(Object ino1, Object ino2) {
|
||
|
|
if ((((MultiSetEntry)ino1).value instanceof Segment) &&
|
||
|
|
(((MultiSetEntry)ino2).value instanceof Segment))
|
||
|
|
return ((Segment)((MultiSetEntry)ino1).value).compare((Segment)((MultiSetEntry)ino2).value);
|
||
|
|
else
|
||
|
|
throw new WrongTypeException("in SegmentComparator: Expected Segment/Segment - found: "+
|
||
|
|
((MultiSetEntry)ino1).value.getClass()+
|
||
|
|
"/"+
|
||
|
|
((MultiSetEntry)ino2).value.getClass());
|
||
|
|
|
||
|
|
}//end method compare
|
||
|
|
|
||
|
|
}//end class SegmentComparator
|