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

cucumber.runtime.xstream.ListOfSingleValueWriter Maven / Gradle / Ivy

There is a newer version: 1.2.6
Show newest version
package cucumber.runtime.xstream;

import cucumber.runtime.CucumberException;

import java.util.ArrayList;
import java.util.List;

public class ListOfSingleValueWriter extends CellWriter {
    private int nodeDepth;
    private final List values = new ArrayList();

    @Override
    public List getHeader() {
        return null;
    }

    @Override
    public List getValues() {
        return values;
    }

    @Override
    public void startNode(String name) {
        if (nodeDepth > 1) {
            throw new CucumberException("Can only convert List> to a table when T is a single value (primitive, string, date etc).");
        }
        nodeDepth++;
    }

    @Override
    public void addAttribute(String name, String value) {
    }

    @Override
    public void setValue(String value) {
        values.add(value == null ? "" : value);
    }

    @Override
    public void endNode() {
        nodeDepth--;
    }

    @Override
    public void flush() {
        throw new UnsupportedOperationException();
    }

    @Override
    public void close() {
        throw new UnsupportedOperationException();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy