Package com.java.pojo.internal.utils
Class CollectionUtils
- java.lang.Object
-
- com.java.pojo.internal.utils.CollectionUtils
-
public class CollectionUtils extends Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <T> ArrayList<T>
asList(T... elements)
static <T> Set<T>
asSet(T... elements)
static boolean
isNotEmpty(Collection<?> collection)
-
-
-
Method Detail
-
isNotEmpty
public static boolean isNotEmpty(Collection<?> collection)
-
asList
public static <T> ArrayList<T> asList(T... elements)
-
asSet
public static <T> Set<T> asSet(T... elements)
-
-