Uses of Class
io.github.mmm.marshall.StructuredReader.State
-
Packages that use StructuredReader.State Package Description io.github.mmm.marshall Provides the API for marshalling and unmarshalling data. -
-
Uses of StructuredReader.State in io.github.mmm.marshall
Fields in io.github.mmm.marshall declared as StructuredReader.State Modifier and Type Field Description protected StructuredReader.State
AbstractStructuredReader. state
Methods in io.github.mmm.marshall that return StructuredReader.State Modifier and Type Method Description StructuredReader.State
AbstractStructuredReader. getState()
StructuredReader.State
StructuredReader. getState()
StructuredReader.State
StructuredReader. next()
Proceeds to the nextStructuredReader.State
skipping the current information.static StructuredReader.State
StructuredReader.State. valueOf(String name)
Returns the enum constant of this type with the specified name.static StructuredReader.State[]
StructuredReader.State. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in io.github.mmm.marshall with parameters of type StructuredReader.State Modifier and Type Method Description protected void
AbstractStructuredReader. expect(StructuredReader.State expected)
Verifies that thecurrent state
is the same as the given states.protected void
AbstractStructuredReader. expect(StructuredReader.State expected, StructuredReader.State expected2)
Verifies that thecurrent state
is one of the given states.protected void
AbstractStructuredReader. expect(StructuredReader.State expected, StructuredReader.State expected2, StructuredReader.State expected3)
Verifies that thecurrent state
is one of the given states.protected void
AbstractStructuredReader. expectNot(StructuredReader.State unexpected)
Verifies that thecurrent state
is not the same as the given state.
-