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

net.intelie.pipes.util.ExplodableList Maven / Gradle / Ivy

There is a newer version: 0.25.5
Show newest version
package net.intelie.pipes.util;

import net.intelie.pipes.Explodable;
import net.intelie.pipes.PipeException;

public class ExplodableList implements Explodable {
    private final Iterable it;

    public ExplodableList(Iterable it) {
        this.it = it;
    }

    @Override
    public Iterable explode() {
        return it;
    }

    @Override
    public String toString() {
        return "explodable " + it;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy