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. fallback
Fallback writer for unknown objects.private TextWriterWriterInterface<?>
TextWriterStream. fallbackwriter
Fallback writer, using toString.Fields in elki.result.textwriter with type parameters of type TextWriterWriterInterface Modifier and Type Field Description static HandlerList<TextWriterWriterInterface<?>>
TextWriter. writers
Hash map for supported classes in writer.private HandlerList<TextWriterWriterInterface<?>>
TextWriterStream. writers
Handlers 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 class
TextWriterConfusionMatrixResult
Write a classification evaluation to a text file.class
TextWriterDoubleArray
Write a double array.class
TextWriterDoubleDoublePair
Write a pairclass
TextWriterIgnore
Ignore the given object when serializing to text.class
TextWriterIntArray
Write a double array.class
TextWriterObjectArray<T>
Write an object into the inline section, using the objects toString method.class
TextWriterObjectComment
Write an object into the comments section, using the objects toString() method.class
TextWriterObjectInline
Write an object into the inline section, using the objects toString method.class
TextWriterPair
Write a pairclass
TextWriterTextWriteable
Write an object, using the objects ownTextWriteable
interface.class
TextWriterXYCurve
Serialize an XYCurve to text.
-