Uses of Interface
io.github.mmm.marshall.StructuredReader
-
Packages that use StructuredReader 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 StructuredReader in io.github.mmm.bean
Methods in io.github.mmm.bean with parameters of type StructuredReader Modifier and Type Method Description default void
WritableBean. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.entity.id
Methods in io.github.mmm.entity.id with parameters of type StructuredReader Modifier and Type Method Description static <E> Id<E>
IdMarshaller. readId(StructuredReader reader, IdMapper mapper, Class<E> type)
-
Uses of StructuredReader in io.github.mmm.entity.property.id
Methods in io.github.mmm.entity.property.id with parameters of type StructuredReader Modifier and Type Method Description void
IdProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.entity.property.link
Methods in io.github.mmm.entity.property.link with parameters of type StructuredReader Modifier and Type Method Description void
LinkProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.marshall
Classes in io.github.mmm.marshall that implement StructuredReader Modifier and Type Class Description class
AbstractStructuredReader
Abstract base implementation ofStructuredReader
.Methods in io.github.mmm.marshall that return StructuredReader Modifier and Type Method Description default StructuredReader
StructuredFormat. reader(InputStream in)
StructuredReader
StructuredFormat. reader(Reader reader)
default StructuredReader
StructuredFormat. reader(Object data)
default StructuredReader
StructuredFormat. reader(String data)
Methods in io.github.mmm.marshall with parameters of type StructuredReader Modifier and Type Method Description void
UnmarshallableObject. read(StructuredReader reader)
default UnmarshallableObject
UnmarshallableObject. readObject(StructuredReader reader)
ATTENTION: This object will be modified such that the read data will be applied.T
Unmarshaller. readObject(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.marshall.standard
Methods in io.github.mmm.marshall.standard with parameters of type StructuredReader Modifier and Type Method Description T
DatatypeMarshalling. readObject(StructuredReader reader)
List<T>
ListMarshalling. readObject(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property
Methods in io.github.mmm.property with parameters of type StructuredReader Modifier and Type Method Description void
Property. read(StructuredReader reader)
Property<V>
Property. readObject(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.booleans
Methods in io.github.mmm.property.booleans with parameters of type StructuredReader Modifier and Type Method Description void
BooleanProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.container.map
Methods in io.github.mmm.property.container.map with parameters of type StructuredReader Modifier and Type Method Description void
MapProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.number
Methods in io.github.mmm.property.number with parameters of type StructuredReader Modifier and Type Method Description void
NumberProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.object
Methods in io.github.mmm.property.object with parameters of type StructuredReader Modifier and Type Method Description void
SimpleProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.range
Methods in io.github.mmm.property.range with parameters of type StructuredReader Modifier and Type Method Description void
RangeProperty. read(StructuredReader reader)
-
Uses of StructuredReader in io.github.mmm.property.temporal
Methods in io.github.mmm.property.temporal with parameters of type StructuredReader Modifier and Type Method Description void
TemporalProperty. read(StructuredReader reader)
-