Uses of Class
elki.result.textwriter.TextWriterWriterInterface
-
Packages that use TextWriterWriterInterface Package Description elki.result.textwriter Text serialization (CSV, Gnuplot, Console, ...).elki.result.textwriter.writers Serialization handlers for individual data types. -
-
Uses of TextWriterWriterInterface in elki.result.textwriter
Fields in elki.result.textwriter declared as TextWriterWriterInterface Modifier and Type Field Description private TextWriterWriterInterface<?>TextWriter. fallbackFallback writer for unknown objects.private TextWriterWriterInterface<?>TextWriterStream. fallbackwriterFallback writer, using toString.Fields in elki.result.textwriter with type parameters of type TextWriterWriterInterface Modifier and Type Field Description static HandlerList<TextWriterWriterInterface<?>>TextWriter. writersHash map for supported classes in writer.private HandlerList<TextWriterWriterInterface<?>>TextWriterStream. writersHandlers for various object types.Methods in elki.result.textwriter that return TextWriterWriterInterface Modifier and Type Method Description TextWriterWriterInterface<?>TextWriterStream. getWriterFor(java.lang.Object o)Retrieve an appropriate writer from the handler list.Constructors in elki.result.textwriter with parameters of type TextWriterWriterInterface Constructor Description TextWriterStream(java.io.PrintStream out, HandlerList<TextWriterWriterInterface<?>> writers, TextWriterWriterInterface<?> fallback)Constructor.Constructor parameters in elki.result.textwriter with type arguments of type TextWriterWriterInterface Constructor Description TextWriterStream(java.io.PrintStream out, HandlerList<TextWriterWriterInterface<?>> writers, TextWriterWriterInterface<?> fallback)Constructor. -
Uses of TextWriterWriterInterface in elki.result.textwriter.writers
Subclasses of TextWriterWriterInterface in elki.result.textwriter.writers Modifier and Type Class Description classTextWriterConfusionMatrixResultWrite a classification evaluation to a text file.classTextWriterDoubleArrayWrite a double array.classTextWriterDoubleDoublePairWrite a pairclassTextWriterIgnoreIgnore the given object when serializing to text.classTextWriterIntArrayWrite a double array.classTextWriterObjectArray<T>Write an object into the inline section, using the objects toString method.classTextWriterObjectCommentWrite an object into the comments section, using the objects toString() method.classTextWriterObjectInlineWrite an object into the inline section, using the objects toString method.classTextWriterPairWrite a pairclassTextWriterTextWriteableWrite an object, using the objects ownTextWriteableinterface.classTextWriterXYCurveSerialize an XYCurve to text.
-