mongovalues.JsIntCodec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongo-values Show documentation
Show all versions of mongo-values Show documentation
Set of codecs to add support for json-values in the Java MongoDB driver, abstracting the process of
decoding a BSON into a JsObj and encoding a JsObj into a BSON.
The newest version!
package mongovalues;
import jsonvalues.JsInt;
import org.bson.BsonReader;
import org.bson.BsonWriter;
import org.bson.codecs.Codec;
import org.bson.codecs.DecoderContext;
import org.bson.codecs.EncoderContext;
import org.bson.codecs.IntegerCodec;
class JsIntCodec implements Codec {
private static final IntegerCodec integerCodec = new IntegerCodec();
@Override
public void encode(final BsonWriter writer, final JsInt jsInt, final EncoderContext encoderContext) {
integerCodec.encode(writer, jsInt.value, encoderContext);
}
@Override
public JsInt decode(final BsonReader reader, final DecoderContext decoderContext) {
return JsInt.of(integerCodec.decode(reader,
decoderContext)
);
}
@Override
public Class getEncoderClass() {
return JsInt.class;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy