Example usage for jdk.nashorn.internal.objects NativeString toString

List of usage examples for jdk.nashorn.internal.objects NativeString toString

Introduction

In this page you can find the example usage for jdk.nashorn.internal.objects NativeString toString.

Prototype

@Override
    public String toString() 

Source Link

Usage

From source file:org.bson.jvm.nashorn.NativeStringCodec.java

License:Apache License

public void encode(BsonWriter writer, NativeString value, EncoderContext encoderContext) {
    writer.writeString(value.toString());
}