Java tutorial
//package com.java2s; //License from project: Apache License import java.util.List; public class Main { public static <T> T atOrNull(List<T> list, int index) { if (list.size() <= index) return null; return list.get(index); } }