Package org.nlpub.watset.util
Class ILEFormat
java.lang.Object
org.nlpub.watset.util.ILEFormat
Utilities for handling the ILE
(identifier, length, elements)
file format.-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionstatic org.jgrapht.alg.interfaces.ClusteringAlgorithm.Clustering<String>
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.
-
Field Details
-
SEPARATOR
The default separator, expressed by the tab symbol.- See Also:
-
DELIMITER
The default delimiter, expressed by comma and space.- See Also:
-
-
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 writerclustering
- the clusters- Throws:
IOException
- if an I/O error occurs
-