INNER CODE UNIT · Java
AbstractBsonReader
mongodb/mongo-java-driver · bson/src/main/org/bson/AbstractBsonReader.java:29
public abstract class AbstractBsonReader implements BsonReader {
private State state;
private Context context;
private BsonType currentBsonType;
private String currentName;
private boolean closed;
/**
* Initializes a new instance of the BsonReader class.
*/
protected AbstractBsonReader() {
state = State.INITIAL;
}
@Override
public BsonType getCurrentBsonType() {
return currentBsonType;
}