
com.blazebit.query.connector.github.graphql.ObjectMappers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blaze-query-connector-github-graphql Show documentation
Show all versions of blaze-query-connector-github-graphql Show documentation
A multi-platform querying library
The newest version!
/*
* SPDX-License-Identifier: Apache-2.0
* Copyright Blazebit
*/
package com.blazebit.query.connector.github.graphql;
import com.fasterxml.jackson.databind.ObjectMapper;
public final class ObjectMappers {
public static ObjectMapper instance;
private ObjectMappers() {
}
public static ObjectMapper getInstance() {
if ( instance == null ) {
instance = new ObjectMapper();
instance.findAndRegisterModules();
}
return instance;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy