Package opennlp.tools.util.featuregen
Class BrownCluster.BrownClusterSerializer
- java.lang.Object
-
- opennlp.tools.util.featuregen.BrownCluster.BrownClusterSerializer
-
- All Implemented Interfaces:
ArtifactSerializer<BrownCluster>
- Enclosing class:
- BrownCluster
public static class BrownCluster.BrownClusterSerializer extends Object implements ArtifactSerializer<BrownCluster>
-
-
Constructor Summary
Constructors Constructor Description BrownClusterSerializer()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BrownCluster
create(InputStream in)
Creates the artifact from the providedInputStream
.void
serialize(BrownCluster artifact, OutputStream out)
Serializes the artifact to the providedOutputStream
.
-
-
-
Method Detail
-
create
public BrownCluster create(InputStream in) throws IOException
Description copied from interface:ArtifactSerializer
Creates the artifact from the providedInputStream
. TheInputStream
remains open.- Specified by:
create
in interfaceArtifactSerializer<BrownCluster>
- Returns:
- the artifact
- Throws:
IOException
-
serialize
public void serialize(BrownCluster artifact, OutputStream out) throws IOException
Description copied from interface:ArtifactSerializer
Serializes the artifact to the providedOutputStream
. TheOutputStream
remains open.- Specified by:
serialize
in interfaceArtifactSerializer<BrownCluster>
- Throws:
IOException
-
-