Package org.springframework.data.neo4j.conversion

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


    final ExecutionEngine executionEngine;
    private ResultConverter resultConverter;

    public CypherQueryEngine(GraphDatabaseService graphDatabaseService) {
        this(graphDatabaseService, new DefaultConverter());
    }
View Full Code Here


        this(graphDatabaseService, new DefaultConverter());
    }


    public CypherQueryEngine(GraphDatabaseService graphDatabaseService, ResultConverter resultConverter) {
        this.resultConverter = resultConverter != null ? resultConverter : new DefaultConverter();
        this.executionEngine = new ExecutionEngine(graphDatabaseService);
    }
View Full Code Here

    private final GremlinExecutor gremlinExecutor;
    private final ResultConverter resultConverter;

    public GremlinQueryEngine(GraphDatabaseService graphDatabaseService) {
        this(graphDatabaseService, new DefaultConverter());
    }
View Full Code Here

        this(graphDatabaseService, new DefaultConverter());
    }


    public GremlinQueryEngine(GraphDatabaseService graphDatabaseService, ResultConverter resultConverter) {
        this.resultConverter = resultConverter != null ? resultConverter : new DefaultConverter();
        this.gremlinExecutor = new GremlinExecutor(graphDatabaseService);
    }
View Full Code Here

    private ResultConverter createResultConverter() {
        if (resultConverter!=null) return resultConverter;
        if (conversionService != null) {
            this.resultConverter = new ConversionServiceQueryResultConverter(conversionService);
        } else {
            this.resultConverter = new DefaultConverter();
        }
        return resultConverter;
    }
View Full Code Here

    private ResultConverter createResultConverter() {
        if (resultConverter!=null) return resultConverter;
        if (conversionService != null) {
            this.resultConverter = new ConversionServiceQueryResultConverter(conversionService);
        } else {
            this.resultConverter = new DefaultConverter();
        }
        return resultConverter;
    }
View Full Code Here

    private ResultConverter createResultConverter() {
        if (resultConverter!=null) return resultConverter;
        if (conversionService != null) {
            this.resultConverter = new ConversionServiceQueryResultConverter(conversionService);
        } else {
            this.resultConverter = new DefaultConverter();
        }
        return resultConverter;
    }
View Full Code Here

    private final ExecutionEngine executionEngine;
    private ResultConverter resultConverter;
    private final QueryParameterConverter queryParameterConverter = new QueryParameterConverter();

    public CypherQueryEngineImpl(GraphDatabaseService graphDatabaseService, ResultConverter resultConverter) {
        this.resultConverter = resultConverter != null ? resultConverter : new DefaultConverter();
        this.executionEngine = new ExecutionEngine(graphDatabaseService);
    }
View Full Code Here

TOP

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

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.