All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cocoahero.android.geojson.util.ListUtils Maven / Gradle / Ivy

package com.cocoahero.android.geojson.util;

import java.util.List;

public class ListUtils {

    public static  T getHead(List list) {
        if (list == null || list.isEmpty()) {
            return null;
        }
        return list.get(0);
    }

    public static  T getTail(List list) {
        if (list == null || list.isEmpty()) {
            return null;
        }
        return list.get(list.size() - 1);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy