Uses of Class
org.bson.AbstractBsonReader.State
-
Packages that use AbstractBsonReader.State Package Description org.bson Contains the base BSON classes. -
-
Uses of AbstractBsonReader.State in org.bson
Methods in org.bson that return AbstractBsonReader.State Modifier and Type Method Description protected AbstractBsonReader.State
AbstractBsonReader. getNextState()
Returns the nextState
to transition to, based on theAbstractBsonReader.Context
of this reader.AbstractBsonReader.State
AbstractBsonReader. getState()
static AbstractBsonReader.State
AbstractBsonReader.State. valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractBsonReader.State[]
AbstractBsonReader.State. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.bson with parameters of type AbstractBsonReader.State Modifier and Type Method Description protected void
AbstractBsonReader. setState(AbstractBsonReader.State newState)
Sets the new current state of this reader.protected void
AbstractBsonReader. throwInvalidState(String methodName, AbstractBsonReader.State... validStates)
Throws an InvalidOperationException when the method called is not valid for the current state.
-