X-Git-Url: https://git.piment-noir.org/?p=Persons_Comparator.git;a=blobdiff_plain;f=src%2FSize.java;h=eb8003f542104a9249658a2b118a8f758c0f8814;hp=a61f24cb79769b34c3a8e8b502542621232a81ed;hb=5687dc10a68b52d28b63151d8c16a45775ef2e77;hpb=9b3bfcdd95253a04ed12a676ee29a9d777c1e496 diff --git a/src/Size.java b/src/Size.java index a61f24c..eb8003f 100644 --- a/src/Size.java +++ b/src/Size.java @@ -1,6 +1,7 @@ -public class Size implements Comparable { +public class Size { private int max = 240; private int min = 40; + private int defaultSize = 160; private int size; Size() { @@ -18,6 +19,10 @@ public class Size implements Comparable { return max; } + public int getDefaultSize() { + return defaultSize; + } + public int getSize() { return size; } @@ -34,13 +39,8 @@ public class Size implements Comparable { return (size >= getMin() && size <= getMax()); } - @Override - public int compareTo(Size size) { + public int distanceTo(Size size) { int distance = size.getSize() - this.getSize(); - if (distance >= 0) - return distance; - else - return -distance; - + return Math.abs(distance); } }