Package com.tinkerpop.gremlin.tinkergraph.process.computer

Examples of com.tinkerpop.gremlin.tinkergraph.process.computer.TinkerGraphComputer


    @Override
    public GraphComputer compute(final Class... graphComputerClass) {
        GraphComputerHelper.validateComputeArguments(graphComputerClass);
        if (graphComputerClass.length == 0 || graphComputerClass[0].equals(TinkerGraphComputer.class))
            return new TinkerGraphComputer(this);
        else
            throw Graph.Exceptions.graphDoesNotSupportProvidedGraphComputer(graphComputerClass[0]);
    }
View Full Code Here

TOP

Related Classes of com.tinkerpop.gremlin.tinkergraph.process.computer.TinkerGraphComputer

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.