Class LocalTimeAsDateTimeCodec

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

    public final class LocalTimeAsDateTimeCodec
    extends Object
    implements Codec<LocalTime>

    Encodes and decodes LocalTime values to and from BSON DateTime.

    Note the following implementation details:

    • the date part is considered Unix epoch day (1970-01-01);
    • the zone offset part is considered UTC;
    • the nanoseconds precision is lost.

    This type is immutable.