Package org.springframework.data.neo4j.conversion

Examples of org.springframework.data.neo4j.conversion.QueryResultBuilder


        Object columnValue = map.get(columnName);
        if(columnValue==null) return null;

        if (returnType.isCollectionLike()) {
             QueryResultBuilder qrb = new QueryResultBuilder((Iterable)columnValue, converter);
             return qrb.to(returnType.getActualType().getType()).as(returnType.getType());
        } else
           return converter.convert(columnValue, returnType.getType(), mappingPolicy);
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.neo4j.conversion.QueryResultBuilder

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.