INNER CODE UNIT · Java
getState
mongodb/mongo-java-driver · bson/src/main/org/bson/AbstractBsonReader.java:68
public State getState() {
return state;
}
/**
* Sets the new current state of this reader.
*
* @param newState the state to set this reader to.
*/
protected void setState(final State newState) {
state = newState;
}
/**
* Sets the field name for the key/value pair being read.
*
* @param newName the field name
*/