Package com.mongodb.util
Class JSONCallback
- java.lang.Object
-
- org.bson.BasicBSONCallback
-
- com.mongodb.util.JSONCallback
-
- All Implemented Interfaces:
BSONCallback
@Deprecated public class JSONCallback extends BasicBSONCallback
Deprecated.This class has been superseded by to toJson and parse methods on BasicDBObjectConverts JSON to DBObjects and vice versa.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
_msDateFormat
Deprecated.static java.lang.String
_secDateFormat
Deprecated.
-
Constructor Summary
Constructors Constructor Description JSONCallback()
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
arrayStart(java.lang.String name)
Deprecated.Signals the start of a BSON array, with its field name.BSONObject
create()
Deprecated.Factory method for creating a new BSONObject.java.lang.Object
objectDone()
Deprecated.Called at the end of the document/array, and returns this object.void
objectStart(java.lang.String name)
Deprecated.Signals the start of a BSON document, which usually maps onto some Java object.-
Methods inherited from class org.bson.BasicBSONCallback
arrayDone, arrayStart, create, createBSONCallback, get, gotBinary, gotBinaryArray, gotBoolean, gotCode, gotCodeWScope, gotDate, gotDBRef, gotDecimal128, gotDouble, gotInt, gotLong, gotMaxKey, gotMinKey, gotNull, gotObjectId, gotRegex, gotString, gotSymbol, gotTimestamp, gotUndefined, gotUUID, objectStart, reset
-
-
-
-
Field Detail
-
_msDateFormat
public static final java.lang.String _msDateFormat
Deprecated.- See Also:
- Constant Field Values
-
_secDateFormat
public static final java.lang.String _secDateFormat
Deprecated.- See Also:
- Constant Field Values
-
-
Method Detail
-
create
public BSONObject create()
Deprecated.Description copied from class:BasicBSONCallback
Factory method for creating a new BSONObject.- Overrides:
create
in classBasicBSONCallback
- Returns:
- a new BasicBSONObject.
-
arrayStart
public void arrayStart(java.lang.String name)
Deprecated.Description copied from interface:BSONCallback
Signals the start of a BSON array, with its field name.- Specified by:
arrayStart
in interfaceBSONCallback
- Overrides:
arrayStart
in classBasicBSONCallback
- Parameters:
name
- the name of this array field
-
objectStart
public void objectStart(java.lang.String name)
Deprecated.Description copied from interface:BSONCallback
Signals the start of a BSON document, which usually maps onto some Java object.- Specified by:
objectStart
in interfaceBSONCallback
- Overrides:
objectStart
in classBasicBSONCallback
- Parameters:
name
- the field name of the document.
-
objectDone
public java.lang.Object objectDone()
Deprecated.Description copied from interface:BSONCallback
Called at the end of the document/array, and returns this object.- Specified by:
objectDone
in interfaceBSONCallback
- Overrides:
objectDone
in classBasicBSONCallback
- Returns:
- the Object that has been read from this section of the document.
-
-