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

com.urbanairship.api.push.parse.notification.ios.CropSerializer Maven / Gradle / Ivy

There is a newer version: 9.3.0
Show newest version
/*
 * Copyright (c) 2013-2016.  Urban Airship and Contributors
 */
package com.urbanairship.api.push.parse.notification.ios;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.core.JsonProcessingException;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.urbanairship.api.push.model.notification.ios.Crop;

import java.io.IOException;

public class CropSerializer extends JsonSerializer {
    @Override
    public void serialize(Crop crop, JsonGenerator jgen, SerializerProvider provider) throws IOException, JsonProcessingException {
        jgen.writeStartObject();

        if (crop.getX().isPresent()) {
            jgen.writeObjectField("x", crop.getX().get());
        }

        if (crop.getY().isPresent()) {
            jgen.writeObjectField("y", crop.getY().get());
        }

        if (crop.getWidth().isPresent()) {
            jgen.writeObjectField("width", crop.getWidth().get());
        }

        if (crop.getHeight().isPresent()) {
            jgen.writeObjectField("height", crop.getHeight().get());
        }

        jgen.writeEndObject();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy