org.jobrunr.utils.reflection.autobox.EnumAutoboxer Maven / Gradle / Ivy
package org.jobrunr.utils.reflection.autobox;
@SuppressWarnings({"rawtypes", "unchecked"})
public class EnumAutoboxer implements TypeAutoboxer {
@Override
public boolean supports(Class> type) {
return type.isEnum();
}
@Override
public Enum autobox(Object value, Class type) {
return Enum.valueOf(type, value.toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy