Example usage for com.fasterxml.jackson.databind.jsonFormatVisitors JsonFormatVisitorWrapper expectStringFormat

List of usage examples for com.fasterxml.jackson.databind.jsonFormatVisitors JsonFormatVisitorWrapper expectStringFormat

Introduction

In this page you can find the example usage for com.fasterxml.jackson.databind.jsonFormatVisitors JsonFormatVisitorWrapper expectStringFormat.

Prototype

public JsonStringFormatVisitor expectStringFormat(JavaType type) throws JsonMappingException;

Source Link

Usage

From source file:capital.scalable.restdocs.example.jackson.MoneySerializer.java

@Override
public void acceptJsonFormatVisitor(JsonFormatVisitorWrapper visitor, JavaType typeHint)
        throws JsonMappingException {
    if (visitor != null) {
        visitor.expectStringFormat(typeHint);
    }//from  w  w w.  j a  v  a 2 s .co m
}