Android Utililty Methods Int Range Check

List of utility methods to do Int Range Check

Description

The list of methods to do Int Range Check are organized into topic(s).

Method

booleaninRange10(int val, int from, int to)
in Range
return val >= from && val < to;
booleaninRange11(int val, int from, int to)
in Range
return val >= from && val <= to;
booleanisBetween(int number, int first, int second)
is Between
return ((number > first) && (number < second));