Example usage for com.fasterxml.jackson.databind.node TextNode toString

List of usage examples for com.fasterxml.jackson.databind.node TextNode toString

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.node TextNode toString.

Prototype

public String toString() 

Source Link

Usage

From source file:can.yrt.oba.serialization.JacksonSerializer.java

public String toJson(String input) {
    TextNode node = JsonNodeFactory.instance.textNode(input);
    return node.toString();
}