List of usage examples for jdk.nashorn.internal.objects NativeNumber getValue
public double getValue()
From source file:org.bson.jvm.nashorn.NativeNumberCodec.java
License:Apache License
public void encode(BsonWriter writer, NativeNumber nativeNumber, EncoderContext encoderContext) { writer.writeDouble(nativeNumber.getValue()); }