Uses of Interface
opennlp.tools.util.ObjectStream
Packages that use ObjectStream
Package
Description
-
Uses of ObjectStream in opennlp.tools.cmdline
Methods in opennlp.tools.cmdline that return ObjectStream -
Uses of ObjectStream in opennlp.tools.ml
Methods in opennlp.tools.ml with parameters of type ObjectStreamModifier and TypeMethodDescriptionEventTrainer.train(ObjectStream<Event> events) Trains aMaxentModelfor givenevents. -
Uses of ObjectStream in opennlp.tools.ml.model
Subinterfaces of ObjectStream in opennlp.tools.ml.modelModifier and TypeInterfaceDescriptioninterfaceInterface for streams ofsequencesused to train sequence models.Methods in opennlp.tools.ml.model with parameters of type ObjectStreamModifier and TypeMethodDescriptionvoidDataIndexer.index(ObjectStream<Event> eventStream) Performs the data indexing. -
Uses of ObjectStream in opennlp.tools.util
Classes in opennlp.tools.util that implement ObjectStreamModifier and TypeClassDescriptionclassA baseObjectStreamimplementation.classReads a plain text file and returns each line as aStringobject.Methods in opennlp.tools.util that return ObjectStreamModifier and TypeMethodDescriptionstatic <T> ObjectStream<T> ObjectStreamUtils.concatenateObjectStream(Collection<ObjectStream<T>> streams) static <T> ObjectStream<T> ObjectStreamUtils.concatenateObjectStream(ObjectStream<T>... streams) Creates a single concatenatedObjectStreamfrom multiple individualstreamswith the same type.static <T> ObjectStream<T> ObjectStreamUtils.createObjectStream(Collection<T> collection) Creates anObjectStreamform aCollection<T>.static <T> ObjectStream<T> ObjectStreamUtils.createObjectStream(T... array) Creates anObjectStreamform an array ofT.Methods in opennlp.tools.util with parameters of type ObjectStreamModifier and TypeMethodDescriptionstatic <T> ObjectStream<T> ObjectStreamUtils.concatenateObjectStream(ObjectStream<T>... streams) Creates a single concatenatedObjectStreamfrom multiple individualstreamswith the same type.Method parameters in opennlp.tools.util with type arguments of type ObjectStreamModifier and TypeMethodDescriptionstatic <T> ObjectStream<T> ObjectStreamUtils.concatenateObjectStream(Collection<ObjectStream<T>> streams) Constructors in opennlp.tools.util with parameters of type ObjectStreamModifierConstructorDescriptionprotectedAbstractObjectStream(ObjectStream<T> stream) Initializes anAbstractObjectStream.