public class EmptyBSONCallback extends Object implements BSONCallback
UnsupportedOperationException
for all methods.Constructor and Description |
---|
EmptyBSONCallback() |
Modifier and Type | Method and Description |
---|---|
Object |
arrayDone()
Called the end of the array, and returns the completed array.
|
void |
arrayStart()
Signals the start of a BSON array.
|
void |
arrayStart(String name)
Signals the start of a BSON array, with its field name.
|
BSONCallback |
createBSONCallback()
Factory method for BSONCallbacks.
|
Object |
get()
Returns the finished top-level Document.
|
void |
gotBinary(String name,
byte type,
byte[] data)
Called when reading a field with a
BsonType.BINARY value. |
void |
gotBinaryArray(String name,
byte[] data)
Deprecated.
|
void |
gotBoolean(String name,
boolean value)
Called when reading a field with a
BsonType.BOOLEAN value. |
void |
gotCode(String name,
String code)
Called when reading a field with a
BsonType.JAVASCRIPT value. |
void |
gotCodeWScope(String name,
String code,
Object scope)
Called when reading a field with a
BsonType.JAVASCRIPT_WITH_SCOPE value. |
void |
gotDate(String name,
long millis)
Called when reading a field with a
BsonType.DATE_TIME value. |
void |
gotDBRef(String name,
String namespace,
ObjectId id)
Invoked when
BSONDecoder encountered a BsonType.DB_POINTER type field in a byte sequence. |
void |
gotDecimal128(String name,
Decimal128 value)
Called when reading a field with a
BsonType.DECIMAL128 value. |
void |
gotDouble(String name,
double value)
Called when reading a field with a
BsonType.DOUBLE value. |
void |
gotInt(String name,
int value)
Called when reading a field with a
BsonType.INT32 value. |
void |
gotLong(String name,
long value)
Called when reading a field with a
BsonType.INT64 value. |
void |
gotMaxKey(String name)
Called when reading a field with a
BsonType.MAX_KEY value. |
void |
gotMinKey(String name)
Called when reading a field with a
BsonType.MIN_KEY value. |
void |
gotNull(String name)
Called when reading a BSON field that exists but has a null value.
|
void |
gotObjectId(String name,
ObjectId id)
Called when reading a field with a
BsonType.OBJECT_ID value. |
void |
gotRegex(String name,
String pattern,
String flags)
Called when reading a field with a
BsonType.REGULAR_EXPRESSION value. |
void |
gotString(String name,
String value)
Called when reading a field with a
BsonType.STRING value. |
void |
gotSymbol(String name,
String value)
Called when reading a field with a
BsonType.SYMBOL value. |
void |
gotTimestamp(String name,
int time,
int increment)
Called when reading a field with a
BsonType.TIMESTAMP value. |
void |
gotUndefined(String name)
Called when reading a field with a
BsonType.UNDEFINED value. |
void |
gotUUID(String name,
long part1,
long part2)
Called when reading a field with a
UUID value. |
Object |
objectDone()
Called at the end of the document/array, and returns this object.
|
void |
objectStart()
Signals the start of a BSON document, which usually maps onto some Java object.
|
void |
objectStart(String name)
Signals the start of a BSON document, which usually maps onto some Java object.
|
void |
reset()
Resets the callback, clearing all state.
|
public void objectStart()
BSONCallback
objectStart
in interface BSONCallback
public void objectStart(String name)
BSONCallback
objectStart
in interface BSONCallback
name
- the field name of the document.public Object objectDone()
BSONCallback
objectDone
in interface BSONCallback
public void reset()
BSONCallback
reset
in interface BSONCallback
public Object get()
BSONCallback
get
in interface BSONCallback
public BSONCallback createBSONCallback()
BSONCallback
createBSONCallback
in interface BSONCallback
public void arrayStart()
BSONCallback
arrayStart
in interface BSONCallback
public void arrayStart(String name)
BSONCallback
arrayStart
in interface BSONCallback
name
- the name of this array fieldpublic Object arrayDone()
BSONCallback
arrayDone
in interface BSONCallback
public void gotNull(String name)
BSONCallback
gotNull
in interface BSONCallback
name
- the name of the fieldBsonType.NULL
public void gotUndefined(String name)
BSONCallback
BsonType.UNDEFINED
value.gotUndefined
in interface BSONCallback
name
- the name of the fieldBsonType.UNDEFINED
public void gotMinKey(String name)
BSONCallback
BsonType.MIN_KEY
value.gotMinKey
in interface BSONCallback
name
- the name of the fieldpublic void gotMaxKey(String name)
BSONCallback
BsonType.MAX_KEY
value.gotMaxKey
in interface BSONCallback
name
- the name of the fieldpublic void gotBoolean(String name, boolean value)
BSONCallback
BsonType.BOOLEAN
value.gotBoolean
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotDouble(String name, double value)
BSONCallback
BsonType.DOUBLE
value.gotDouble
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotInt(String name, int value)
BSONCallback
BsonType.INT32
value.gotInt
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotLong(String name, long value)
BSONCallback
BsonType.INT64
value.gotLong
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotDecimal128(String name, Decimal128 value)
BSONCallback
BsonType.DECIMAL128
value.gotDecimal128
in interface BSONCallback
name
- the field namevalue
- the Decimal128 field valuepublic void gotDate(String name, long millis)
BSONCallback
BsonType.DATE_TIME
value.gotDate
in interface BSONCallback
name
- the name of the fieldmillis
- the date and time in millisecondspublic void gotString(String name, String value)
BSONCallback
BsonType.STRING
value.gotString
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotSymbol(String name, String value)
BSONCallback
BsonType.SYMBOL
value.gotSymbol
in interface BSONCallback
name
- the name of the fieldvalue
- the field's valuepublic void gotRegex(String name, String pattern, String flags)
BSONCallback
BsonType.REGULAR_EXPRESSION
value.gotRegex
in interface BSONCallback
name
- the name of the fieldpattern
- the regex patternflags
- the optional flags for the regular expressionpublic void gotTimestamp(String name, int time, int increment)
BSONCallback
BsonType.TIMESTAMP
value.gotTimestamp
in interface BSONCallback
name
- the name of the fieldtime
- the time in seconds since epochincrement
- an incrementing ordinal for operations within a given secondpublic void gotObjectId(String name, ObjectId id)
BSONCallback
BsonType.OBJECT_ID
value.gotObjectId
in interface BSONCallback
name
- the name of the fieldid
- the object IDpublic void gotDBRef(String name, String namespace, ObjectId id)
BSONCallback
BSONDecoder
encountered a BsonType.DB_POINTER
type field in a byte sequence.gotDBRef
in interface BSONCallback
name
- the name of the fieldnamespace
- the namespace to which reference is pointing toid
- the if of the object to which reference is pointing to@Deprecated public void gotBinaryArray(String name, byte[] data)
BSONCallback
gotBinaryArray
in interface BSONCallback
name
- the name of the fielddata
- the field's valuepublic void gotBinary(String name, byte type, byte[] data)
BSONCallback
BsonType.BINARY
value. Note that binary values have a subtype, which may
determine how the value is processed.gotBinary
in interface BSONCallback
name
- the name of the fieldtype
- one of the binary subtypes: BsonBinarySubType
data
- the field's valuepublic void gotUUID(String name, long part1, long part2)
BSONCallback
UUID
value. This is a binary value of subtype
BsonBinarySubType.UUID_LEGACY
gotUUID
in interface BSONCallback
name
- the name of the fieldpart1
- the first part of the UUIDpart2
- the second part of the UUIDpublic void gotCode(String name, String code)
BSONCallback
BsonType.JAVASCRIPT
value.gotCode
in interface BSONCallback
name
- the name of the fieldcode
- the JavaScript codepublic void gotCodeWScope(String name, String code, Object scope)
BSONCallback
BsonType.JAVASCRIPT_WITH_SCOPE
value.gotCodeWScope
in interface BSONCallback
name
- the name of the fieldcode
- the JavaScript codescope
- a document representing the scope for the code