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

ASF GitHub Bot commented on LANG-1402:
--------------------------------------

Github user coveralls commented on the issue:

    https://github.com/apache/commons-lang/pull/336
  
    
    [![Coverage 
Status](https://coveralls.io/builds/17878362/badge)](https://coveralls.io/builds/17878362)
    
    Coverage increased (+0.007%) to 95.251% when pulling 
**91e0050de89c1430dfe98e4e8423c9dd82449fd2 on MarkDacek:LANG-1402** into 
**c241b096d32f9ece918466f3614c143e8679dac5 on apache:master**.



> ArrayUtils should have null and index-safe get methods.
> -------------------------------------------------------
>
>                 Key: LANG-1402
>                 URL: https://issues.apache.org/jira/browse/LANG-1402
>             Project: Commons Lang
>          Issue Type: New Feature
>          Components: General
>            Reporter: Mark Dacek
>            Priority: Minor
>   Original Estimate: 24h
>  Remaining Estimate: 24h
>
> There should be a safe way to retrieve a value from array without having to 
> check for null and length. It would be a very simple implementation but could 
> save developers a great deal of time in writing and testing.
>  
> Something like 
>  
> {code:java}
> String[] a = null;
> ArrayUtils.get(a, 5); //returns null
> a = new String[5];
> ArrayUtils.get(a, 10); // returns null
>  
> a[0] = "Hello World";
> ArrayUtils.get(a, 0); // returns "Hello World"
> {code}
>  
>  We could handle a few other cases - a default return value. The 
> tricky/annoying thing is the need to cast everything in order to make this 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)

Reply via email to