Package org.bson

Class RawBsonDocument

  • All Implemented Interfaces:
    , , <,​BsonValue>, Bson

    public final class RawBsonDocument
    extends BsonDocument
    An immutable BSON document that is represented using only the raw bytes.
    Since:
    3.0
    See Also:
    Serialized Form
    • Constructor Detail

      • RawBsonDocument

        public RawBsonDocument​(byte[] bytes)
        Constructs a new instance with the given byte array. Note that it does not make a copy of the array, so do not modify it after passing it to this constructor.
        Parameters:
        bytes - the bytes representing a BSON document. Note that the byte array is NOT copied, so care must be taken not to modify it after passing it to this construction, unless of course that is your intention.
      • RawBsonDocument

        public RawBsonDocument​(byte[] bytes,
                               int offset,
                               int length)
        Constructs a new instance with the given byte array, offset, and length. Note that it does not make a copy of the array, so do not modify it after passing it to this constructor.
        Parameters:
        bytes - the bytes representing a BSON document. Note that the byte array is NOT copied, so care must be taken not to modify it after passing it to this construction, unless of course that is your intention.
        offset - the offset into the byte array
        length - the length of the subarray to use
        Since:
        3.3
      • RawBsonDocument

        public RawBsonDocument​(T document,
                               Codec<T> codec)
        Construct a new instance from the given document and codec for the document type.
        Type Parameters:
        T - the BSON type that the codec encodes/decodes
        Parameters:
        document - the document to transform
        codec - the codec to facilitate the transformation
    • Method Detail

      • parse

        public static  json)
        Parses a string in MongoDB Extended JSON format to a RawBsonDocument
        Parameters:
        json - the JSON string
        Returns:
        a corresponding RawBsonDocument object
        Since:
        3.3
        See Also:
        JsonReader
        MongoDB documentation
      • getByteBuffer

        public ByteBuf getByteBuffer()
        Returns a ByteBuf that wraps the byte array, with the proper byte order. Any changes made to the returned will be reflected in the underlying byte array owned by this instance.
        Returns:
        a byte buffer that wraps the byte array owned by this instance.
      • decode

        public <T> T decode​(Codec<T> codec)
        Decode this into a document.
        Type Parameters:
        T - the BSON type that the codec encodes/decodes
        Parameters:
        codec - the codec to facilitate the transformation
        Returns:
        the decoded document
      • decode

        public <T> T decode​(Decoder<T> decoder)
        Decode this into a document.
        Type Parameters:
        T - the BSON type that the codec encodes/decodes
        Parameters:
        decoder - the decoder to facilitate the transformation
        Returns:
        the decoded document
        Since:
        3.6
      • append

        public  key,
                                   BsonValue value)
        Description copied from class: BsonDocument
        Put the given key and value into this document, and return the document.
        Overrides:
        append in class BsonDocument
        Parameters:
        key - the key
        value - the value
        Returns:
        this
      • getFirstKey

        public  getFirstKey()
        Description copied from class: BsonDocument
        Gets the first key in the document.
        Overrides:
        getFirstKey in class BsonDocument
        Returns:
        the first key in the document
      • toJson

        public  toJson​(JsonWriterSettings settings)
        Description copied from class: BsonDocument
        Gets a JSON representation of this document using the given JsonWriterSettings.
        Overrides:
        toJson in class BsonDocument
        Parameters:
        settings - the JSON writer settings
        Returns:
        a JSON representation of this document