Uses of Class
eu.simuline.octave.io.spi.OctaveDataWriter
-
Packages that use OctaveDataWriter Package Description eu.simuline.octave.io.impl Provides the implementations of the services specified ineu.simuline.octave.io.spi
; one for each octave type given in octave viatypeinfo
.eu.simuline.octave.io.spi Theeu.simuline.octave.io.spi
package contains service provider interfaces for reading and writing various kinds ofOctaveObject
s. -
-
Uses of OctaveDataWriter in eu.simuline.octave.io.impl
Subclasses of OctaveDataWriter in eu.simuline.octave.io.impl Modifier and Type Class Description (package private) class
AbstractLogicalFloatingPointWriter<T extends AbstractGenericMatrix<?,?>>
Common Writer class for logical and floating point types: Boolean, Double, ...(package private) class
AbstractPrimitiveMatrixWriter<T extends AbstractGenericMatrix<?,?>>
Common Writer class for primitive java types: Boolean, Double, Integer....class
BooleanWriter
The writer for the octave type "bool matrix" (matrix with boolean entries) and "bool", which is short for "bool scalar", writing anOctaveBoolean
to aWriter
.class
CellWriter
The writer for the octave type "cell" writing anOctaveCell
to aWriter
.class
FakeWriter
The writer of allOctaveFake
objects.class
FunctionHandleWriter
The writer for the octave type "function handle" writing anOctaveFunctionHandle
to aWriter
.class
Int32MatrixWriter
class
Int64MatrixWriter
The writer for the octave type "int32 matrix" writing anOctaveLong
to aWriter
.class
MatrixWriter
The writer for the octave types "matrix" (of double) and "scalar" (of double) writing anOctaveDouble
to aWriter
.class
OctaveStringWriter
The writer for the octave type "string" writing anOctaveString
to aWriter
.class
SparseBooleanWriter
The writer for the octave type "sparse bool matrix" writing anOctaveSparseBoolean
to aWriter
.class
StructWriter
The writer for the octave type "struct" writing anOctaveStruct
to aWriter
.class
Uint8MatrixWriter
This is deactivated. -
Uses of OctaveDataWriter in eu.simuline.octave.io.spi
Fields in eu.simuline.octave.io.spi with type parameters of type OctaveDataWriter Modifier and Type Field Description private static Map<Class<? extends OctaveObject>,OctaveDataWriter<?>>
OctaveDataWriter. wRITERS
Maps thejavaType()
which represents an octave type of anOctaveDataWriter
to theOctaveDataWriter
itself which is able to write the octave type to a writer.Methods in eu.simuline.octave.io.spi that return OctaveDataWriter Modifier and Type Method Description static <T extends OctaveObject>
OctaveDataWriter<T>OctaveDataWriter. getOctaveDataWriter(T type)
-