Class InstantCodec

  • All Implemented Interfaces:
    >, >, >

    public class InstantCodec
    extends 
    Instant Codec.

    Encodes and decodes Instant objects to and from DateTime. Data is stored to millisecond accuracy.

    Note: Requires Java 8 or greater.

    Since:
    3.7
    MongoDB documentation
    • Constructor Detail

      • InstantCodec

        public InstantCodec()
    • Method Detail

      • decode

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

        public void encode​(BsonWriter writer,
                            value,
                           EncoderContext encoderContext)
        Encode an instance of the type parameter T into a BSON value.
        Parameters:
        writer - the BSON writer to encode into
        value - the value to encode
        encoderContext - the encoder context
        Throws:
        CodecConfigurationException - if the Instant cannot be converted to a valid Bson DateTime.
      • getEncoderClass

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