Here you can find the source of toObjectCollection(Object v)
@SuppressWarnings("unchecked") static public Collection<Object> toObjectCollection(Object v)
//package com.java2s; import java.util.Collection; public class Main { @SuppressWarnings("unchecked") static public Collection<Object> toObjectCollection(Object v) { return (Collection<Object>) v; }//from w ww . j a v a 2s. c o m }