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

io.github.cloudchacho.EmptyStringListFactory Maven / Gradle / Ivy

There is a newer version: 0.5
Show newest version
package io.github.cloudchacho;

import org.apache.beam.sdk.options.DefaultValueFactory;
import org.apache.beam.sdk.options.PipelineOptions;

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

public class EmptyStringListFactory implements DefaultValueFactory> {
    public List create(PipelineOptions options) {
        return new ArrayList<>();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy