All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fge.util.SimpleValueHolder Maven / Gradle / Ivy

There is a newer version: 0.8.2
Show newest version
package com.github.fge.util;

import com.fasterxml.jackson.databind.JsonNode;
import com.github.fge.jsonschema.util.ValueHolder;

public final class SimpleValueHolder
    extends ValueHolder
{
    public SimpleValueHolder(final T value)
    {
        super("valueType", value);
    }

    @Override
    protected JsonNode valueAsJson()
    {
        return FACTORY.textNode(value.getClass().getCanonicalName());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy