Package org.caffinitas.mapper.core.mapper

Examples of org.caffinitas.mapper.core.mapper.DataTypeMapperList


        if (dataTypeName == DataType.Name.SET) {
            col.dataType = DataType.set(elementDataType);
            col.dataTypeMapper = new DataTypeMapperSet(TypeCodec.setOf(elementDataType, persistenceManager.protocolVersion));
        } else if (dataTypeName == DataType.Name.LIST) {
            col.dataType = DataType.list(elementDataType);
            col.dataTypeMapper = new DataTypeMapperList(TypeCodec.listOf(elementDataType, persistenceManager.protocolVersion));
        }
    }
View Full Code Here

TOP

Related Classes of org.caffinitas.mapper.core.mapper.DataTypeMapperList

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.