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

io.sphere.sdk.json.EnumSerializer Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.json;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdScalarSerializer;
import io.sphere.sdk.models.SphereEnumeration;

import java.io.IOException;

class EnumSerializer extends StdScalarSerializer {
    private static final long serialVersionUID = 0L;

    EnumSerializer() {
        super(SphereEnumeration.class);
    }

    @Override
    public void serialize(final SphereEnumeration sphereEnumeration, final JsonGenerator jsonGenerator, final SerializerProvider serializerProvider) throws IOException {
        final String sphereName = sphereEnumeration.toSphereName();
        jsonGenerator.writeString(sphereName);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy