List of usage examples for jdk.nashorn.internal.objects NativeBoolean getValue
public boolean getValue()
From source file:org.bson.jvm.nashorn.NativeBooleanCodec.java
License:Apache License
public void encode(BsonWriter writer, NativeBoolean nativeBoolean, EncoderContext encoderContext) { writer.writeBoolean(nativeBoolean.getValue()); }