Class BsonArrayCodec

  • All Implemented Interfaces:
    Codec<BsonArray>, Decoder<BsonArray>, Encoder<BsonArray>

    @Deprecated(since="2022-10-31")
    public class BsonArrayCodec
    extends java.lang.Object
    implements Codec<BsonArray>
    Deprecated.
    Usage of this API is not supported in AEM as a Cloud Service.
    A codec for BsonArray instances.
    Since:
    3.0
    • Constructor Detail

      • BsonArrayCodec

        public BsonArrayCodec()
        Deprecated.
        Creates a new instance with a default codec registry that uses the BsonValueCodecProvider.
        Since:
        3.4
      • BsonArrayCodec

        public BsonArrayCodec​(CodecRegistry codecRegistry)
        Deprecated.
        Construct an instance with the given registry
        Parameters:
        codecRegistry - the codec registry
    • Method Detail

      • decode

        public BsonArray decode​(BsonReader reader,
                                DecoderContext decoderContext)
        Deprecated.
        Description copied from interface: Decoder
        Decodes a BSON value from the given reader into an instance of the type parameter T.
        Specified by:
        decode in interface Decoder<BsonArray>
        Parameters:
        reader - the BSON reader
        decoderContext - the decoder context
        Returns:
        an instance of the type parameter T.
      • encode

        public void encode​(BsonWriter writer,
                           BsonArray array,
                           EncoderContext encoderContext)
        Deprecated.
        Description copied from interface: Encoder
        Encode an instance of the type parameter T into a BSON value.
        Specified by:
        encode in interface Encoder<BsonArray>
        Parameters:
        writer - the BSON writer to encode into
        array - the value to encode
        encoderContext - the encoder context
      • getEncoderClass

        public java.lang.Class<BsonArray> getEncoderClass()
        Deprecated.
        Description copied from interface: Encoder
        Returns the Class instance that this encodes. This is necessary because Java does not reify generic types.
        Specified by:
        getEncoderClass in interface Encoder<BsonArray>
        Returns:
        the Class instance that this encodes.