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

com.speedment.jpastreamer.interopoptimizer.standard.StandardIntermediateOperationOptimizerFactory Maven / Gradle / Ivy

There is a newer version: 3.0.4
Show newest version
/*
 * JPAstreamer - Express JPA queries with Java Streams
 * Copyright (c) 2020-2022, Speedment, Inc. All Rights Reserved.
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 *
 * This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 * See the GNU Lesser General Public License for more details.
 *
 * See: https://github.com/speedment/jpa-streamer/blob/master/LICENSE
 */
package com.speedment.jpastreamer.interopoptimizer.standard;

import com.speedment.jpastreamer.interopoptimizer.standard.internal.InternalIntermediateOperationOptimizerFactory;
import com.speedment.jpastreamer.interopoptimizer.IntermediateOperationOptimizerFactory;
import com.speedment.jpastreamer.interopoptimizer.IntermediateOperationOptimizer;

import java.util.stream.Stream;

public final class StandardIntermediateOperationOptimizerFactory implements IntermediateOperationOptimizerFactory {

    private final IntermediateOperationOptimizerFactory delegate = new InternalIntermediateOperationOptimizerFactory();

    @Override
    public Stream stream() {
        return delegate.stream();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy