Here you can find the source of firstFrom(Collection collection)
public static Object firstFrom(Collection collection)
//package com.java2s; //License from project: Open Source License import java.util.*; public class Main { public static Object firstFrom(Collection collection) { return collection.iterator().next(); }/*from www .j av a2 s . com*/ }