Java tutorial
//package com.java2s; import java.util.List; public class Main { public static <T extends Object> T getWithoutRangeCheck(List<T> col, int i) { try { return col.get(i); } catch (IndexOutOfBoundsException e) { return null; } } }