Here you can find the source of getCollection(Object entity)
public static Collection getCollection(Object entity)
//package com.java2s; // Licensed under the Apache License, Version 2.0 (the "License"); import java.util.ArrayList; import java.util.Collection; import java.util.List; public class Main { public static Collection getCollection(Object entity) { List<Object> rs = new ArrayList<Object>(); rs.add(entity);/* ww w . java 2 s .c o m*/ return rs; } }