Package com.alibaba.tamper.core.builder.impl

Examples of com.alibaba.tamper.core.builder.impl.BeanMappingObjectBuilder


    protected void configure() {
        // 需要客户端实现
    }

    public BeanMappingObjectBuilder mapping(String name, Class srcClass, Class targetClass) {
        BeanMappingObjectBuilder builder = new BeanMappingObjectBuilder(name, srcClass, targetClass, global);
        object = builder.get();
        return builder;
    }
View Full Code Here


        object = builder.get();
        return builder;
    }

    public BeanMappingObjectBuilder mapping(Class srcClass, Class targetClass) {
        BeanMappingObjectBuilder builder = new BeanMappingObjectBuilder(srcClass, targetClass, global);
        object = builder.get();
        return builder;
    }
View Full Code Here

TOP

Related Classes of com.alibaba.tamper.core.builder.impl.BeanMappingObjectBuilder

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.