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

io.ultreia.java4all.bean.AbstractJavaBeanStream Maven / Gradle / Ivy

package io.ultreia.java4all.bean;

/*-
 * #%L
 * Java Beans extends by Ultreia.io
 * %%
 * Copyright (C) 2018 Ultreia.io
 * %%
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as
 * published by the Free Software Foundation, either version 3 of the
 * License, or (at your option) any later version.
 *
 * This program 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 General Lesser Public License for more details.
 *
 * You should have received a copy of the GNU General Lesser Public
 * License along with this program.  If not, see
 * .
 * #L%
 */

import io.ultreia.java4all.bean.definition.JavaBeanDefinition;
import io.ultreia.java4all.bean.definition.JavaBeanDefinitionStore;
import io.ultreia.java4all.util.Comparators;

import java.util.Collection;
import java.util.Comparator;
import java.util.LinkedList;
import java.util.List;
import java.util.Optional;
import java.util.stream.Stream;

/**
 * Created by tchemit on 11/01/2018.
 *
 * @author Tony Chemit - [email protected]
 */
public class AbstractJavaBeanStream> extends AbstractJavaBeanPredicate implements JavaBeanStream {

    private final List> comparators;
    private final Collection elements;

    public AbstractJavaBeanStream(JavaBeanDefinition javaBeanDefinition, Collection elements) {
        super(javaBeanDefinition);
        this.elements = elements;
        this.comparators = new LinkedList<>();
    }

    protected AbstractJavaBeanStream(Class javaBeanDefinitionType, Collection elements) {
        this(JavaBeanDefinitionStore.definition(javaBeanDefinitionType), elements);
    }

    @Override
    public void addComparator(Comparator predicate) {
        comparators.add(predicate);
    }

    @Override
    public Optional> comparator() {
        return Comparators.comparator(comparators);
    }

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

    protected  StreamObjectQuery where(String propertyName) {
        return new StreamObjectQuery<>(p(), this.getter(propertyName));
    }

    protected > StreamSimpleComparableQuery whereComparable(String propertyName) {
        return new StreamSimpleComparableQuery<>(p(), this.getter(propertyName));
    }

    protected > StreamPrimitiveObjectQuery wherePrimitive(String propertyName) {
        return new StreamPrimitiveObjectQuery<>(p(), this.getter(propertyName));
    }

    protected StreamObjectBooleanQuery whereBoolean(String propertyName) {
        return new StreamObjectBooleanQuery<>(p(), getter(propertyName));
    }

    protected StreamPrimitiveBooleanQuery wherePrimitiveBoolean(String propertyName) {
        return new StreamPrimitiveBooleanQuery<>(p(), getter(propertyName));
    }

    protected StreamStringQuery whereString(String propertyName) {
        return new StreamStringQuery<>(p(), getter(propertyName));
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy