You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Henri Yandell (JIRA)" <ji...@apache.org> on 2008/02/12 06:42:08 UTC

[jira] Updated: (LANG-386) LeftOf/RightOfNumber in Range convenience methods necessary

     [ https://issues.apache.org/jira/browse/LANG-386?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Henri Yandell updated LANG-386:
-------------------------------

    Fix Version/s: 3.0

> 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
>             Fix For: 3.0
>
>
> 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.