Uses of Class
org.bson.AbstractBsonWriter.Context
-
Packages that use AbstractBsonWriter.Context Package Description org.bson Contains the base BSON classes.org.bson.json JSON serialization and deserialization. -
-
Uses of AbstractBsonWriter.Context in org.bson
Subclasses of AbstractBsonWriter.Context in org.bson Modifier and Type Class Description protected class
BsonBinaryWriter.Context
Methods in org.bson that return AbstractBsonWriter.Context Modifier and Type Method Description AbstractBsonWriter.Context
AbstractBsonWriter.Context. copy()
Copies the values from thisContext
into a new instance.protected AbstractBsonWriter.Context
AbstractBsonWriter. getContext()
Get the context, which will indicate which state the writer is in, for example which part of a document it's currently writing.AbstractBsonWriter.Context
AbstractBsonWriter.Context. getParentContext()
Returns the parent context.Methods in org.bson with parameters of type AbstractBsonWriter.Context Modifier and Type Method Description protected void
AbstractBsonWriter. setContext(AbstractBsonWriter.Context context)
Set the context, which will indicate which state the writer is in, for example which part of a document it's currently writing.Constructors in org.bson with parameters of type AbstractBsonWriter.Context Constructor Description Context(AbstractBsonWriter.Context from)
Creates a new instance, copying values from an existing context.Context(AbstractBsonWriter.Context parentContext, BsonContextType contextType)
Creates a new instance. -
Uses of AbstractBsonWriter.Context in org.bson.json
Subclasses of AbstractBsonWriter.Context in org.bson.json Modifier and Type Class Description class
JsonWriter.Context
The context for the writer, inheriting all the values fromAbstractBsonWriter.Context
, and additionally providing settings for the indentation level and whether there are any child elements at this level.
-