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

io.soffa.foundation.commons.BeanUtil Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.commons;

import lombok.SneakyThrows;
import org.apache.commons.beanutils.BeanUtils;



public final class BeanUtil {

    private BeanUtil() {
    }

    @SneakyThrows
    public static  T copyProperties(Object src, T dest) {
        BeanUtils.copyProperties(dest, src);
        return dest;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy