Java tutorial
//package com.java2s; import java.util.List; public class Main { public static <T> Object getContent(List<T> collection, Object object) { Object retValue = null; if (collection != null && !collection.isEmpty() && collection.contains(object)) { retValue = collection.get(collection.indexOf(object)); } return retValue; } }