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
-
Method Summary
Modifier and TypeMethodDescriptioncreate
(InputStream in) Creates an artifact from the providedInputStream
.void
serialize
(BrownCluster artifact, OutputStream out) Serializes an artifact to the providedOutputStream
.
-
Constructor Details
-
BrownClusterSerializer
public BrownClusterSerializer()
-
-
Method Details
-
create
Description copied from interface:ArtifactSerializer
Creates an artifact from the providedInputStream
.Note: The
InputStream
remains open.- Specified by:
create
in interfaceArtifactSerializer<BrownCluster>
- Parameters:
in
- A valid, openInputStream
ready to read from.- Returns:
- A valid
artifact
. - Throws:
IOException
- Thrown if IO errors occurred during creation.
-
serialize
Description copied from interface:ArtifactSerializer
Serializes an artifact to the providedOutputStream
.Note: The
OutputStream
remains open.- Specified by:
serialize
in interfaceArtifactSerializer<BrownCluster>
- Parameters:
artifact
- A validartifact
.out
- A valid, openOutputStream
ready to write to.- Throws:
IOException
- Thrown if IO errors occurred during serialization.
-