com.hopper.cloud.airlines.ListUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cloud-airlines-java Show documentation
Show all versions of cloud-airlines-java Show documentation
Use the Hopper cloud airlines Web Services in Java!
The newest version!
package com.hopper.cloud.airlines;
import java.util.List;
public class ListUtil {
/**
* Check if a given list is null or empty
* @param list
* @return true if the list is null or empty
*/
public static boolean isEmpty(List> list) {
return (list == null || list.isEmpty());
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy