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

com.signalfx.shaded.fasterxml.jackson.jr.ob.comp.SequenceComposer Maven / Gradle / Ivy

package com.signalfx.shaded.fasterxml.jackson.jr.ob.comp;

import java.io.IOException;

import com.signalfx.shaded.fasterxml.jackson.core.JsonGenerator;

public abstract class SequenceComposer>
    extends ComposerBase
{
    protected final JsonGenerator _generator;
    
    public SequenceComposer(JsonGenerator g) {
        super();
        _generator = g;
    }

    /*
    /**********************************************************************
    /* Abstract methods from base class
    /**********************************************************************
     */
    
    /**
     * Calls {@link JsonGenerator#flush} on underlying {@link JsonGenerator}.
     */
    @Override
    public void flush() throws IOException {
        if (_generator != null) {
            _generator.close();
        }
    }

    /*
    /**********************************************************************
    /* Compose methods, structures
    /**********************************************************************
     */

    public ArrayComposer startArray() throws IOException
    {
        _closeChild();
        return _startArray(_this(), _generator);
    }

    public ObjectComposer startObject() throws IOException
    {
        _closeChild();
        return _startObject(_this(), _generator);
    }
    
    /*
    /**********************************************************************
    /* Compose methods, scalars, number
    /**********************************************************************
     */

    public THIS add(int value) throws IOException
    {
        _generator.writeNumber(value);
        return _this();
    }

    public THIS add(long value) throws IOException
    {
        _generator.writeNumber(value);
        return _this();
    }

    public THIS add(double value) throws IOException
    {
        _generator.writeNumber(value);
        return _this();
    }
    
    /*
    /**********************************************************************
    /* Compose methods, scalars, textual / binary
    /**********************************************************************
     */

    public THIS add(String value) throws IOException
    {
        _generator.writeString(value);
        return _this();
    }

    public THIS add(CharSequence value) throws IOException
    {
        String str = (value == null) ? null : value.toString();
        _generator.writeString(str);
        return _this();
    }

    /*
    /**********************************************************************
    /* Compose methods, scalars, other
    /**********************************************************************
     */

    public THIS addNull() throws IOException
    {
        _generator.writeNull();
        return _this();
    }

    public THIS add(boolean value) throws IOException
    {
        _generator.writeBoolean(value);
        return _this();
    }
    
    /**
     * Method used to add Java Object ("POJO") into sequence being
     * composed: this requires that the underlying {@link JsonGenerator}
     * has a properly configure {@link com.signalfx.shaded.fasterxml.jackson.core.ObjectCodec}
     * to use for serializer object.
     */
    public THIS addObject(Object pojo) throws IOException
    {
        _generator.writeObject(pojo);
        return _this();
    }
    
    /*
    /**********************************************************************
    /* Internal helper methods
    /**********************************************************************
     */

    protected void _closeChild() throws IOException
    {
        if (_child != null) {
            _child._finish();
            _child = null;
        }
    }

    @SuppressWarnings("unchecked")
    protected THIS _this() {
        return (THIS) this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy