Straight up Java @Test
public void get_first_non_null_java () {
String first = null ;
String second = "Stomp the Hawks, Badgers!" ;
String firstNullObject = null ;
if ( first == null ) {
if ( second != null ) {
firstNullObject = second ;
}
}
assertEquals ( second , firstNullObject );
}
Google Guava @Test
public void get_first_non_null_guava () {
String first = null ;
String second = "Go Badgers!" ;
String firstNullObject = Objects . firstNonNull ( first , second );
assertEquals ( second , firstNullObject );
}
Apache Commons @Test
public void get_first_non_null_apache () {
String first = null ;
String second = "On, Wisconsin!" ;
String firstNullObject = ObjectUtils . firstNonNull ( first , second );
assertEquals ( second , firstNullObject );
}
Get first non null object posted by Justin Musgrove on 02 November 2013
Tagged: java and java-general
Share on: Facebook Google+
All the code on this page is available on github:
GetFirstNonNullObject.java