You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Duncan Jones (JIRA)" <ji...@apache.org> on 2014/10/15 20:50:34 UTC

[jira] [Commented] (LANG-974) New StringUtils Method defaulfNotIn(String, String, List)

    [ https://issues.apache.org/jira/browse/LANG-974?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14172759#comment-14172759 ] 

Duncan Jones commented on LANG-974:
-----------------------------------

Can you describe a use case for this method?

> New StringUtils Method defaulfNotIn(String, String, List<String>)
> -----------------------------------------------------------------
>
>                 Key: LANG-974
>                 URL: https://issues.apache.org/jira/browse/LANG-974
>             Project: Commons Lang
>          Issue Type: Wish
>          Components: lang.*
>    Affects Versions: 3.2.1
>            Reporter: Stephan Knitelius
>            Priority: Minor
>             Fix For: Review Patch
>
>
> Example use case:
> If a Method expects values that should only consist of a certain set such as "0" and "1", and any Invalid String should be defaulted to "0".
> Possible Solution:
> {code}
>   public static String defaultIfNotIn(final String str, final String defaultString, String... validStrings) {
>     if (str == null) {
>       return defaultString;
>     }
>     for (final String validString : validStrings) {
>       if (validString.equals(str)) {
>         return str;
>       }
>     }
>     return defaultString;
>   }
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)