Class ILEFormat

java.lang.Object
org.nlpub.watset.util.ILEFormat

public final class ILEFormat extends Object
Utilities for handling the ILE (identifier, length, elements) file format.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
    The default delimiter, expressed by comma and space.
    static final String
    The default separator, expressed by the tab symbol.
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<String>
    parse(Stream<String> stream)
    Read the ILE-formatted file representing the clusters.
    static void
    write(BufferedWriter writer, org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<String> clustering)
    Write the ILE-formatted file representing the clusters.

    Methods inherited from class java.lang.Object

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

  • Method Details

    • parse

      public static org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<String> parse(Stream<String> stream)
      Read the ILE-formatted file representing the clusters.
      Parameters:
      stream - the input stream
      Returns:
      the clusters
    • write

      public static void write(BufferedWriter writer, org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<String> clustering) throws IOException
      Write the ILE-formatted file representing the clusters.
      Parameters:
      writer - the writer
      clustering - the clusters
      Throws:
      IOException - if an I/O error occurs