X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fdatamodel%2Ffeatures%2FRangeComparator.java;h=26ffee1846edcec88888e4751fbdb0bede7f65d7;hb=c2e16e95b564932deda33dc59ecaea367e7b33b0;hp=57e9b5ff396c648af1ad09381d38cc86274e1947;hpb=51728d3951398f9c12d7017c776953f17322cc68;p=jalview.git diff --git a/src/jalview/datamodel/features/RangeComparator.java b/src/jalview/datamodel/features/RangeComparator.java index 57e9b5f..26ffee1 100644 --- a/src/jalview/datamodel/features/RangeComparator.java +++ b/src/jalview/datamodel/features/RangeComparator.java @@ -1,18 +1,38 @@ package jalview.datamodel.features; +import jalview.datamodel.ContiguousI; + import java.util.Comparator; /** * A comparator that orders ranges by either start position or end position - * ascending. If the position matches, + * ascending. If the position matches, ordering is resolved by end position (or + * start position). * * @author gmcarstairs * */ public class RangeComparator implements Comparator { + public static final Comparator BY_START_POSITION = new RangeComparator( + true); + + public static final Comparator BY_END_POSITION = new RangeComparator( + false); + boolean byStart; + /** + * Constructor + * + * @param byStartPosition + * if true, order based on start position, if false by end position + */ + RangeComparator(boolean byStartPosition) + { + byStart = byStartPosition; + } + @Override public int compare(ContiguousI o1, ContiguousI o2) { @@ -55,15 +75,4 @@ public class RangeComparator implements Comparator } return order; } - - /** - * Constructor - * - * @param byStartPosition - * if true, order based on start position, if false by end position - */ - public RangeComparator(boolean byStartPosition) - { - byStart = byStartPosition; - } }