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

com.groupbyinc.common.jackson.datatype.jdk8.LongStreamSerializer Maven / Gradle / Ivy

The newest version!
package com.fasterxml.jackson.datatype.jdk8;

import com.fasterxml.jackson.core.JsonGenerator;
import com.fasterxml.jackson.databind.SerializerProvider;
import com.fasterxml.jackson.databind.ser.std.StdSerializer;

import java.io.IOException;
import java.util.stream.LongStream;

/**
 * {@link LongStream} serializer
 * 

* Unfortunately there to common ancestor between number base stream, so we need to define each in a specific class *

*/ public class LongStreamSerializer extends StdSerializer { private static final long serialVersionUID = 1L; /** * Singleton instance */ public static final LongStreamSerializer INSTANCE = new LongStreamSerializer(); /** * Constructor */ private LongStreamSerializer() { super(LongStream.class); } @Override public void serialize(LongStream stream, JsonGenerator jgen, SerializerProvider provider) throws IOException { try(LongStream ls = stream) { jgen.writeStartArray(); ls.forEachOrdered(value -> { try { jgen.writeNumber(value); } catch (IOException e) { throw new WrappedIOException(e); } }); jgen.writeEndArray(); } catch (WrappedIOException e) { throw e.getCause(); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy