Example usage for com.fasterxml.jackson.core.format MatchStrength SOLID_MATCH

List of usage examples for com.fasterxml.jackson.core.format MatchStrength SOLID_MATCH

Introduction

In this page you can find the example usage for com.fasterxml.jackson.core.format MatchStrength SOLID_MATCH.

Prototype

MatchStrength SOLID_MATCH

To view the source code for com.fasterxml.jackson.core.format MatchStrength SOLID_MATCH.

Click Source Link

Document

Value that indicates that given data conforms to (one of) canonical form(s) of the data format.

Usage

From source file:com.bazaarvoice.jackson.rison.RisonFactory.java

@Override
public MatchStrength hasFormat(InputAccessor acc) throws IOException {
    return MatchStrength.SOLID_MATCH; // format detection isn't supported
}