org.simpleflatmapper.util.EnumHelper Maven / Gradle / Ivy
package org.simpleflatmapper.util;
public class EnumHelper {
@SuppressWarnings("unchecked")
public static > E[] getValues(Class enumType) {
return enumType.getEnumConstants();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy