All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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