Example usage for org.apache.commons.collections ListUtils subclass-usage

List of usage examples for org.apache.commons.collections ListUtils subclass-usage

Introduction

In this page you can find the example usage for org.apache.commons.collections ListUtils subclass-usage.

Usage

From source file org.usergrid.utils.ListUtils.java

public class ListUtils extends org.apache.commons.collections.ListUtils {

    public static <A> A first(List<A> list) {
        if (list == null) {
            return null;
        }

From source file org.apache.usergrid.utils.ListUtils.java

public class ListUtils extends org.apache.commons.collections.ListUtils {
    private static final Logger LOG = LoggerFactory.getLogger(ListUtils.class);

    public static <A> A first(List<A> list) {
        if (list == null) {
            return null;

From source file org.apache.usergrid.persistence.index.utils.ListUtils.java

public class ListUtils extends org.apache.commons.collections.ListUtils {
    private static final Logger logger = LoggerFactory.getLogger(ListUtils.class);

    public static <A> A first(List<A> list) {
        if (list == null) {
            return null;