Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//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;
    }
}