java.lang.Object
org.tquadrat.foundation.util.RangeFunctions
@UtilityClass
@ClassVersion(sourceVersion="$Id: RangeFunctions.java 1032 2022-04-10 17:27:44Z tquadrat $")
@API(status=STABLE,
since="0.0.7")
public final class RangeFunctions
extends Object
Several range checking functions.
The functions in this class support range checking for various types. This can be especially useful for scripting, but is also usable in other contexts.
- Author:
- Thomas Thrien (thomas.thrien@tquadrat.org)
- Thanks to:
- Ben Gidley
- Version:
- $Id: RangeFunctions.java 1032 2022-04-10 17:27:44Z tquadrat $
- Since:
- 0.0.7
- UML Diagram
-
UML Diagram for "org.tquadrat.foundation.util.RangeFunctions"
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
isAbove
(char value, char floor) Returnstrue
ifvalue
is abovefloor
.static boolean
isAbove
(double value, double floor) Returnstrue
ifvalue
is abovefloor
.static boolean
isAbove
(long value, long floor) Returnstrue
ifvalue
is abovefloor
.static <T> boolean
isAbove
(Comparable<T> value, T floor) Returnstrue
ifvalue
is abovefloor
.static <T> boolean
isAbove
(Comparable<T> value, T floor, boolean include) Returnstrue
ifvalue
is abovefloor
.static <T> boolean
isAbove
(Comparator<T> comparator, T value, T floor) Returnstrue
ifvalue
is abovefloor
.static <T> boolean
isAbove
(Comparator<T> comparator, T value, T floor, boolean include) Returnstrue
ifvalue
is abovefloor
.static boolean
isBelow
(char value, char ceiling) Returnstrue
ifvalue
is belowceiling
.static boolean
isBelow
(double value, double ceiling) Returnstrue
ifvalue
is belowceiling
.static boolean
isBelow
(long value, long ceiling) Returnstrue
ifvalue
is belowceiling
.static <T> boolean
isBelow
(Comparable<T> value, T ceiling) Returnstrue
ifvalue
is belowceiling
.static <T> boolean
isBelow
(Comparable<T> value, T ceiling, boolean include) Returnstrue
ifvalue
is belowceiling
.static <T> boolean
isBelow
(Comparator<T> comparator, T value, T ceiling) Returnstrue
ifvalue
is belowceiling
.static <T> boolean
isBelow
(Comparator<T> comparator, T value, T ceiling, boolean include) Returnstrue
ifvalue
is belowceiling
.static boolean
isBetween
(char value, char floor, char ceiling) Returnstrue
ifvalue
is betweenfloor
andceiling
.static boolean
isBetween
(char value, char floor, char ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
.static boolean
isBetween
(double value, double floor, double ceiling) Returnstrue
ifvalue
is betweenfloor
andceiling
.static boolean
isBetween
(double value, double floor, double ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
.static boolean
isBetween
(long value, long floor, long ceiling) Returnstrue
ifvalue
is betweenfloor
andceiling
.static boolean
isBetween
(long value, long floor, long ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
.static <T> boolean
isBetween
(Comparable<T> value, T floor, T ceiling) Returnstrue
ifvalue
is betweenfloor
andceiling
.static <T> boolean
isBetween
(Comparable<T> value, T floor, T ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
.static <T> boolean
isBetween
(Comparator<T> comparator, T value, T floor, T ceiling) Returnstrue
ifvalue
is betweenfloor
andceiling
.static <T> boolean
isBetween
(Comparator<T> comparator, T value, T floor, T ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
.
-
Constructor Details
-
RangeFunctions
private RangeFunctions()No instance is allowed for this class.
-
-
Method Details
-
isAbove
Returnstrue
ifvalue
is abovefloor
.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.floor
- The border value.include
-true
if the border is included,false
if not.- Returns:
true
if the given value is greater than the given border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal", respectively.
-
isAbove
Returnstrue
ifvalue
is abovefloor
.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.floor
- The border value.include
-true
if the border is included,false
if not.- Returns:
true
if the given value is greater than the given border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal", respectively.
-
isAbove
Returnstrue
ifvalue
is abovefloor
. Ifinclude
istrue
,floor
is included, otherwise it is not part of the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.floor
- The border value.- Returns:
true
if the given value is greater than the given border value,false
otherwise.
-
isAbove
Returnstrue
ifvalue
is abovefloor
. Ifinclude
istrue
,floor
is included, otherwise it is not part of the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.floor
- The border value.- Returns:
true
if the given value is greater than the given border value,false
otherwise.
-
isAbove
Returnstrue
ifvalue
is abovefloor
.- Parameters:
value
- The value to compare.floor
- The border value.- Returns:
true
if the given value is greater than the given border value,false
otherwise.
-
isAbove
Returnstrue
ifvalue
is abovefloor
.- Parameters:
value
- The value to compare.floor
- The border value.- Returns:
true
if the given value is greater than the given border value,false
otherwise.
-
isAbove
Returnstrue
ifvalue
is abovefloor
.- Parameters:
value
- The value to compare.floor
- The border value.- Returns:
true
if the given value is greater than the given border value,false
otherwise.
-
isBelow
Returnstrue
ifvalue
is belowceiling
. Ifinclude
istrue
,ceiling
is included, otherwise it is not part of the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.ceiling
- The border value.include
-true
if the border is included,false
if not.- Returns:
true
if the given value is less than the given border value,false
otherwise. Ifinclude
istrue
, it will be "less or equal", respectively.
-
isBelow
Returnstrue
ifvalue
is belowceiling
. Ifinclude
istrue
,ceiling
is included, otherwise it is not part of the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.ceiling
- The border value.include
-true
if the border is included,false
if not.- Returns:
true
if the given value is less than the given border value,false
otherwise. Ifinclude
istrue
, it will be "less or equal", respectively.
-
isBelow
Returnstrue
ifvalue
is belowceiling
.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.ceiling
- The border value.- Returns:
true
if the given value is less than the given border value,false
otherwise.
-
isBelow
Returnstrue
ifvalue
is belowceiling
.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.ceiling
- The border value.- Returns:
true
if the given value is less than the given border value,false
otherwise.
-
isBelow
Returnstrue
ifvalue
is belowceiling
.- Parameters:
value
- The value to compare.ceiling
- The border value.- Returns:
true
if the given value is less than the given border value,false
otherwise.
-
isBelow
Returnstrue
ifvalue
is belowceiling
.- Parameters:
value
- The value to compare.ceiling
- The border value.- Returns:
true
if the given value is less than the given border value,false
otherwise.
-
isBelow
Returnstrue
ifvalue
is belowceiling
.- Parameters:
value
- The value to compare.ceiling
- The border value.- Returns:
true
if the given value is less than the given border value,false
otherwise.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
. Ifinclude
istrue
,floor
andceiling
are included, otherwise they are not in the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.include
-true
if the borders are included,false
if not.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal" and "less or equal", respectively.
-
isBetween
public static <T> boolean isBetween(Comparator<T> comparator, T value, T floor, T ceiling, boolean include) Returnstrue
ifvalue
is betweenfloor
andceiling
. Ifinclude
istrue
,floor
andceiling
are included, otherwise they are not in the range.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.include
-true
if the borders are included,false
if not.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal" and "less or equal", respectively.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
. Ifinclude
istrue
,floor
andceiling
are included, otherwise they are not in the range.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.include
-true
if the borders are included,false
if not.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal" and "less or equal", respectively.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
. Ifinclude
istrue
,floor
andceiling
are included, otherwise they are not in the range.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.include
-true
if the borders are included,false
if not.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal" and "less or equal", respectively.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
. Ifinclude
istrue
,floor
andceiling
are included, otherwise they are not in the range.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.include
-true
if the borders are included,false
if not.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise. Ifinclude
istrue
, it will be "greater or equal" and "less or equal", respectively.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
.- Type Parameters:
T
- The type of the values to check.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
.- Type Parameters:
T
- The type of the values to check.- Parameters:
comparator
- The comparator that is used for the comparison.value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise.
-
isBetween
Returnstrue
ifvalue
is betweenfloor
andceiling
.- Parameters:
value
- The value to compare.floor
- The lower border value.ceiling
- The upper border value.- Returns:
true
if the given value is greater than the given lower border value and less than the given upper border value,false
otherwise.
-