ganymede.util.ObjectMappers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ganymede-notebook Show documentation
Show all versions of ganymede-notebook Show documentation
Ganymede Notebook API and JShell Application
The newest version!
package ganymede.util;
/*-
* ##########################################################################
* Ganymede
* %%
* Copyright (C) 2021, 2022 Allen D. Ball
* %%
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
* ##########################################################################
*/
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.databind.MapperFeature;
import com.fasterxml.jackson.databind.ObjectMapper;
import com.fasterxml.jackson.databind.SerializationFeature;
import com.fasterxml.jackson.databind.json.JsonMapper;
import com.fasterxml.jackson.dataformat.yaml.YAMLGenerator;
import com.fasterxml.jackson.dataformat.yaml.YAMLMapper;
/**
* Common {@link ObjectMapper}s.
*
* @author {@link.uri mailto:[email protected] Allen D. Ball}
*/
public interface ObjectMappers {
/**
* Common static JSON {@link ObjectMapper} instance.
*/
public static final ObjectMapper JSON =
JsonMapper.builder()
.enable(MapperFeature.ACCEPT_CASE_INSENSITIVE_VALUES)
.enable(SerializationFeature.INDENT_OUTPUT)
.build();
/**
* Common static YAML {@link ObjectMapper} instance.
*/
public static final ObjectMapper YAML =
YAMLMapper.builder()
.enable(YAMLGenerator.Feature.WRITE_DOC_START_MARKER)
.enable(MapperFeature.ACCEPT_CASE_INSENSITIVE_VALUES)
.enable(SerializationFeature.INDENT_OUTPUT)
.build()
.setSerializationInclusion(JsonInclude.Include.NON_EMPTY);
}