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

com.fasterxml.jackson.databind.deser.std.CharsetDeserializer Maven / Gradle / Ivy

There is a newer version: 2.17.0
Show newest version
package com.fasterxml.jackson.databind.deser.std;

import java.io.IOException;
import java.nio.charset.Charset;

import com.fasterxml.jackson.databind.DeserializationContext;

public class CharsetDeserializer
    extends FromStringDeserializer
{
    private static final long serialVersionUID = 1L;

    public CharsetDeserializer() { super(Charset.class); }

    @Override
    protected Charset _deserialize(String value, DeserializationContext ctxt)
        throws IOException
    {
        return Charset.forName(value);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy