Example usage for com.fasterxml.jackson.dataformat.yaml YAMLMapper disable

List of usage examples for com.fasterxml.jackson.dataformat.yaml YAMLMapper disable

Introduction

In this page you can find the example usage for com.fasterxml.jackson.dataformat.yaml YAMLMapper disable.

Prototype

public YAMLMapper disable(YAMLParser.Feature f) 

Source Link

Usage

From source file:com.memtrip.gear2nd.parser.Deserialization.java

private static YAMLMapper getYAMLMapper() {
    YAMLMapper yamlMapper = new YAMLMapper();
    yamlMapper.disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);
    yamlMapper.setPropertyNamingStrategy(PropertyNamingStrategy.CAMEL_CASE_TO_LOWER_CASE_WITH_UNDERSCORES);
    return yamlMapper;
}