Uses of Interface
io.github.mmm.marshall.StructuredWriter
-
Packages that use StructuredWriter Package Description io.github.mmm.bean Provides the API for generic java beans defined as simple class or interface avoiding lots of boilerplate code.io.github.mmm.entity.id Contains API and implementation for primary keys that uniquely identify an entity.io.github.mmm.entity.property.id Contains property support for IDs.io.github.mmm.entity.property.link Contains property support for links to entity bean (one-to-one relation).io.github.mmm.marshall Provides the API for marshalling and unmarshalling data.io.github.mmm.marshall.standard io.github.mmm.property Provides the API for generic and powerful properties.io.github.mmm.property.booleans Contains property infrastructure forBoolean
.io.github.mmm.property.container.map Contains property infrastructure forMap
.io.github.mmm.property.number Contains property infrastructure forNumber
.io.github.mmm.property.object Contains property infrastructure forObject
.io.github.mmm.property.range Contains property infrastructure forRange
.io.github.mmm.property.temporal Contains property infrastructure forjava.time
. -
-
Uses of StructuredWriter in io.github.mmm.bean
Methods in io.github.mmm.bean with parameters of type StructuredWriter Modifier and Type Method Description default void
ReadableBean. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.entity.id
Methods in io.github.mmm.entity.id with parameters of type StructuredWriter Modifier and Type Method Description static void
IdMarshaller. writeId(StructuredWriter writer, Id<?> id)
-
Uses of StructuredWriter in io.github.mmm.entity.property.id
Methods in io.github.mmm.entity.property.id with parameters of type StructuredWriter Modifier and Type Method Description void
IdProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.entity.property.link
Methods in io.github.mmm.entity.property.link with parameters of type StructuredWriter Modifier and Type Method Description void
LinkProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.marshall
Classes in io.github.mmm.marshall that implement StructuredWriter Modifier and Type Class Description class
AbstractStructuredStringWriter
class
AbstractStructuredWriter
Abstract base implementation ofStructuredWriter
.Methods in io.github.mmm.marshall that return StructuredWriter Modifier and Type Method Description default StructuredWriter
StructuredFormat. writer(OutputStream out)
StructuredWriter
StructuredFormat. writer(Appendable writer)
Methods in io.github.mmm.marshall with parameters of type StructuredWriter Modifier and Type Method Description void
MarshallableObject. write(StructuredWriter writer)
default void
MarshallableObject. writeObject(StructuredWriter writer, Object object)
void
Marshaller. writeObject(StructuredWriter writer, T object)
-
Uses of StructuredWriter in io.github.mmm.marshall.standard
Methods in io.github.mmm.marshall.standard with parameters of type StructuredWriter Modifier and Type Method Description void
DatatypeMarshalling. writeObject(StructuredWriter writer, T object)
void
ListMarshalling. writeObject(StructuredWriter writer, List<T> list)
-
Uses of StructuredWriter in io.github.mmm.property
Methods in io.github.mmm.property with parameters of type StructuredWriter Modifier and Type Method Description void
Property. write(StructuredWriter writer)
void
Property. writeObject(StructuredWriter writer, Object object)
-
Uses of StructuredWriter in io.github.mmm.property.booleans
Methods in io.github.mmm.property.booleans with parameters of type StructuredWriter Modifier and Type Method Description void
BooleanProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.property.container.map
Methods in io.github.mmm.property.container.map with parameters of type StructuredWriter Modifier and Type Method Description void
MapProperty. write(StructuredWriter writer)
protected void
MapProperty. writeKey(StructuredWriter writer, K key)
Implementation ofMapProperty.write(StructuredWriter)
for amap key
.protected void
MapProperty. writeValue(StructuredWriter writer, V mapValue)
Implementation ofMapProperty.write(StructuredWriter)
for amap value
. -
Uses of StructuredWriter in io.github.mmm.property.number
Methods in io.github.mmm.property.number with parameters of type StructuredWriter Modifier and Type Method Description void
NumberProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.property.object
Methods in io.github.mmm.property.object with parameters of type StructuredWriter Modifier and Type Method Description void
SimpleProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.property.range
Methods in io.github.mmm.property.range with parameters of type StructuredWriter Modifier and Type Method Description void
RangeProperty. write(StructuredWriter writer)
-
Uses of StructuredWriter in io.github.mmm.property.temporal
Methods in io.github.mmm.property.temporal with parameters of type StructuredWriter Modifier and Type Method Description void
TemporalProperty. write(StructuredWriter writer)
-