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

functionalj.list.FuncListWithLimit Maven / Gradle / Ivy

There is a newer version: 1.0.17
Show newest version
// ============================================================================
// Copyright (c) 2017-2021 Nawapunth Manusitthipol (NawaMan - http://nawaman.net).
// ----------------------------------------------------------------------------
// MIT License
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in all
// copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
// SOFTWARE.
// ============================================================================
package functionalj.list;

import static functionalj.list.AsFuncListHelper.funcListOf;
import static functionalj.list.FuncList.deriveFrom;

import java.util.function.BiPredicate;
import java.util.function.Predicate;

import functionalj.function.aggregator.AggregationToBoolean;
import lombok.val;

public interface FuncListWithLimit extends AsFuncList {
    
    /** Limit the size of the stream to the given size. */
    public default FuncList limit(Long maxSize) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.limit(maxSize));
    }
    
    /** Skip to the given offset position. */
    public default FuncList skip(Long startAt) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skip(startAt));
    }
    
    /** Skip any value while the condition is true. */
    public default FuncList skipWhile(Predicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipWhile(condition));
    }
    
    /** Skip any value while the condition is true. */
    public default FuncList skipWhile(AggregationToBoolean aggregationCondition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipUntil(aggregationCondition));
    }
    
    /** Skip any value while the condition is true. */
    public default FuncList skipWhile(BiPredicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipWhile(condition));
    }
    
    /** Skip any value until the condition is true. */
    public default FuncList skipUntil(Predicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipUntil(condition));
    }
    
    /** Skip any value until the condition is true. */
    public default FuncList skipUntil(AggregationToBoolean aggregationCondition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipWhile(aggregationCondition));
    }
    
    /** Skip any value until the condition is true. */
    public default FuncList skipUntil(BiPredicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.skipWhile(condition));
    }
    
    /** Accept any value while the condition is true. */
    public default FuncList takeWhile(Predicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeWhile(condition));
    }
    
    /** Accept any value while the condition is true. */
    public default FuncList takeWhile(AggregationToBoolean aggregationCondition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeWhile(aggregationCondition));
    }
    
    /** Accept any value while the condition is true. */
    public default FuncList takeWhile(BiPredicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeWhile(condition));
    }
    
    /** Accept any value until the condition is true. */
    public default FuncList takeUntil(Predicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeUntil(condition));
    }
    
    /** Accept any value until the condition is true. */
    public default FuncList takeUntil(AggregationToBoolean aggregationCondition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeUntil(aggregationCondition));
    }
    
    /** Accept any value until the condition is true. */
    public default FuncList takeUntil(BiPredicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.takeUntil(condition));
    }
    
    /** Accept any value until the condition is false - include the item that the condition is false. */
    public default FuncList dropAfter(Predicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.dropAfter(condition));
    }
    
    /** Accept any value until the condition is false - include the item that the condition is false. */
    public default FuncList dropAfter(AggregationToBoolean aggregationCondition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.dropAfter(aggregationCondition));
    }
    
    /** Accept any value until the condition is false - include the item that the condition is false. */
    public default FuncList dropAfter(BiPredicate condition) {
        val funcList = funcListOf(this);
        return deriveFrom(funcList, stream -> stream.dropAfter(condition));
    }
    
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy