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.IntStream;

IntStream serializer

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

/** * {@link IntStream} serializer * <p> * Unfortunately there to common ancestor between number base stream, so we need to define each in a specific class * </p> */
public class IntStreamSerializer extends StdSerializer<IntStream> { private static final long serialVersionUID = 1L;
Singleton instance
/** * Singleton instance */
public static final IntStreamSerializer INSTANCE = new IntStreamSerializer();
Constructor
/** * Constructor */
private IntStreamSerializer() { super(IntStream.class); } @Override public void serialize(IntStream stream, JsonGenerator jgen, SerializerProvider provider) throws IOException { try(IntStream is = stream) { jgen.writeStartArray(); is.forEachOrdered(value -> { try { jgen.writeNumber(value); } catch (IOException e) { throw new WrappedIOException(e); } }); jgen.writeEndArray(); } catch (WrappedIOException e) { throw e.getCause(); } } }