Examples of EnumTypeConverter


Examples of org.eclipse.persistence.mappings.converters.EnumTypeConverter

    protected XMLDirectMapping getFetchAttributeMapping() {
        XMLDirectMapping fetchMapping = new XMLDirectMapping();
        fetchMapping.setAttributeName("m_fetch");
        fetchMapping.setGetMethodName("getFetch");
        fetchMapping.setSetMethodName("setFetch");
        fetchMapping.setConverter(new EnumTypeConverter(fetchMapping, FetchType.class, false));
        fetchMapping.setXPath("@fetch");
        return fetchMapping;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.