org.bbottema.javareflection.util.MiscUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-reflection Show documentation
Show all versions of java-reflection Show documentation
Java Reflection provides a small package with nifty reflection features that will help with finding constructors, methods and value conversions
package org.bbottema.javareflection.util;
import lombok.experimental.UtilityClass;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
@UtilityClass
public final class MiscUtil {
@SafeVarargs
@SuppressWarnings("varargs")
public static List newArrayList(T... o) {
ArrayList l = new ArrayList<>();
Collections.addAll(l, o);
return l;
}
}