All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.datastax.graph.GraphCluster Maven / Gradle / Ivy

package com.datastax.graph;

import java.util.List;
import java.util.Map;

/**
 * User: Anders Hong
 * Date: 04/06/2017
 * Time: 12:05
 */
public class GraphCluster {
    private Graph graph;
    // 聚类名称-(节点列表)
    private Map> clusters;

    public Graph getGraph() {
        return graph;
    }

    public void setGraph(Graph graph) {
        this.graph = graph;
    }

    public Map> getClusters() {
        return clusters;
    }

    public void setClusters(Map> clusters) {
        this.clusters = clusters;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy