LeftOf/RightOfNumber in Range convenience methods necessary
-----------------------------------------------------------

                 Key: LANG-386
                 URL: https://issues.apache.org/jira/browse/LANG-386
             Project: Commons Lang
          Issue Type: New Feature
    Affects Versions: 2.3
            Reporter: Michael


I've using Ranges recently and found then insufficent in methods.
I cand check if my numbers is in the Range or not but I cant check on which 
side of the Range it is.
This is my idea:

Range range = new Range(0,5);

boolean outsided = range.leftOfInteger(-5);
outsided equals true
boolean outsided = range.leftOfInteger(5);
outsided equals tfase

same applies for rightOf

another convenience method would be:

create 3 final static int field:

Range.LEFT_OF = -1;
Range.INSIDE = 0;
Range.RIGHT_OF = 1;

range.positionOfInteger(-2)  returns LEFT_OF
and so forth

it is some refactoring of contains and the upper methods.

it would increase functionality

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to