/** * */ package org.gcube.data.streams.dsl; import org.gcube.data.streams.Stream; /** * The environment in which a {@link Stream} sentence is evaluated. * * @author Fabio Simeoni * * @param the type of elements of the input stream * */ public class StreamClauseEnv { private final Stream stream; public StreamClauseEnv(Stream stream) { this.stream=stream; } public Stream stream() { return stream; } }