Class TogetherClustering<V,E>

java.lang.Object
org.nlpub.watset.graph.TogetherClustering<V,E>
Type Parameters:
V - the type of nodes in the graph
E - the type of edges in the graph
All Implemented Interfaces:
org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>

public class TogetherClustering<V,E> extends Object implements org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>
A trivial clustering algorithm that puts every node together in a single large cluster.
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static class 
    Builder for TogetherClustering.

    Nested classes/interfaces inherited from interface org.jgrapht.alg.interfaces.ClusteringAlgorithm

    org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V extends Object>, org.jgrapht.alg.interfaces.ClusteringAlgorithm.ClusteringImpl<V extends Object>
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    protected final org.jgrapht.Graph<V,E>
    The graph.
  • Constructor Summary

    Constructors
    Constructor
    Description
    TogetherClustering(org.jgrapht.Graph<V,E> graph)
    Set up the trivial clustering algorithm that puts every node together in a single large cluster.
  • Method Summary

    Modifier and Type
    Method
    Description
    static <V, E> TogetherClustering.Builder<V,E>
    Create a builder.
    org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V>
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

    • graph

      protected final org.jgrapht.Graph<V,E> graph
      The graph.
  • Constructor Details

    • TogetherClustering

      public TogetherClustering(org.jgrapht.Graph<V,E> graph)
      Set up the trivial clustering algorithm that puts every node together in a single large cluster.
      Parameters:
      graph - the graph
  • Method Details

    • builder

      public static <V, E> TogetherClustering.Builder<V,E> builder()
      Create a builder.
      Type Parameters:
      V - the type of nodes in the graph
      E - the type of edges in the graph
      Returns:
      a builder
    • getClustering

      public org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<V> getClustering()
      Specified by:
      getClustering in interface org.jgrapht.alg.interfaces.ClusteringAlgorithm<V>