com.urbanairship.api.customevents.parse.CustomEventPropertyValueSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-client Show documentation
Show all versions of java-client Show documentation
The Urban Airship Java client library
package com.urbanairship.api.customevents.parse;
import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.JsonSerializer;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.urbanairship.api.customevents.model.CustomEventPropertyValue;
import java.io.IOException;
public class CustomEventPropertyValueSerializer extends JsonSerializer {
@Override
public void serialize(CustomEventPropertyValue customEventPropertyValue, JsonGenerator jgen, SerializerProvider provider)
throws IOException {
if (customEventPropertyValue.isArray()) {
jgen.writeObject(customEventPropertyValue.getAsList());
}
if (customEventPropertyValue.isObject()) {
jgen.writeObject(customEventPropertyValue.getAsMap());
}
if (customEventPropertyValue.isBoolean()) {
jgen.writeBoolean(customEventPropertyValue.getAsBoolean());
}
if (customEventPropertyValue.isNumber()) {
jgen.writeNumber(String.valueOf(customEventPropertyValue.getAsNumber()));
}
if (customEventPropertyValue.isString()) {
jgen.writeString(customEventPropertyValue.getAsString());
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy