org.eclipse.collections.impl.lazy.primitive.LazyIntIterableAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eclipse-collections Show documentation
Show all versions of eclipse-collections Show documentation
Builds the commons-text. Requires eclipse-collections-api be built first and be excluded from
any other poms requiring it.
/*
* Copyright (c) 2022 Goldman Sachs.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* and Eclipse Distribution License v. 1.0 which accompany this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html
* and the Eclipse Distribution License is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.eclipse.collections.impl.lazy.primitive;
import org.eclipse.collections.api.IntIterable;
import org.eclipse.collections.api.bag.primitive.MutableIntBag;
import org.eclipse.collections.api.block.function.primitive.ObjectIntToObjectFunction;
import org.eclipse.collections.api.block.predicate.primitive.IntPredicate;
import org.eclipse.collections.api.block.procedure.primitive.IntProcedure;
import org.eclipse.collections.api.iterator.IntIterator;
import org.eclipse.collections.api.list.primitive.MutableIntList;
import org.eclipse.collections.api.set.primitive.MutableIntSet;
/**
* This file was automatically generated from template file lazyPrimitiveIterableAdapter.stg.
*
* @since 3.0
*/
public class LazyIntIterableAdapter
extends AbstractLazyIntIterable
{
private final IntIterable delegate;
public LazyIntIterableAdapter(IntIterable delegate)
{
this.delegate = delegate;
}
@Override
public IntIterator intIterator()
{
return this.delegate.intIterator();
}
/**
* @since 7.0.
*/
@Override
public void each(IntProcedure procedure)
{
this.delegate.forEach(procedure);
}
@Override
public int size()
{
return this.delegate.size();
}
@Override
public boolean isEmpty()
{
return this.delegate.isEmpty();
}
@Override
public boolean notEmpty()
{
return this.delegate.notEmpty();
}
@Override
public int count(IntPredicate predicate)
{
return this.delegate.count(predicate);
}
@Override
public boolean anySatisfy(IntPredicate predicate)
{
return this.delegate.anySatisfy(predicate);
}
@Override
public boolean allSatisfy(IntPredicate predicate)
{
return this.delegate.allSatisfy(predicate);
}
@Override
public boolean noneSatisfy(IntPredicate predicate)
{
return this.delegate.noneSatisfy(predicate);
}
@Override
public int detectIfNone(IntPredicate predicate, int ifNone)
{
return this.delegate.detectIfNone(predicate, ifNone);
}
@Override
public long sum()
{
return this.delegate.sum();
}
@Override
public int max()
{
return this.delegate.max();
}
@Override
public int min()
{
return this.delegate.min();
}
@Override
public int minIfEmpty(int defaultValue)
{
return this.delegate.minIfEmpty(defaultValue);
}
@Override
public int maxIfEmpty(int defaultValue)
{
return this.delegate.maxIfEmpty(defaultValue);
}
@Override
public double average()
{
return this.delegate.average();
}
@Override
public double median()
{
return this.delegate.median();
}
@Override
public int[] toSortedArray()
{
return this.delegate.toSortedArray();
}
@Override
public MutableIntList toSortedList()
{
return this.delegate.toSortedList();
}
@Override
public int[] toArray()
{
return this.delegate.toArray();
}
@Override
public String toString()
{
return this.delegate.toString();
}
@Override
public String makeString()
{
return this.delegate.makeString();
}
@Override
public String makeString(String separator)
{
return this.delegate.makeString(separator);
}
@Override
public String makeString(String start, String separator, String end)
{
return this.delegate.makeString(start, separator, end);
}
@Override
public void appendString(Appendable appendable)
{
this.delegate.appendString(appendable);
}
@Override
public void appendString(Appendable appendable, String separator)
{
this.delegate.appendString(appendable, separator);
}
@Override
public void appendString(Appendable appendable, String start, String separator, String end)
{
this.delegate.appendString(appendable, start, separator, end);
}
@Override
public boolean contains(int value)
{
return this.delegate.contains(value);
}
@Override
public boolean containsAll(int... source)
{
return this.delegate.containsAll(source);
}
@Override
public boolean containsAll(IntIterable source)
{
return this.delegate.containsAll(source);
}
@Override
public MutableIntList toList()
{
return this.delegate.toList();
}
@Override
public MutableIntSet toSet()
{
return this.delegate.toSet();
}
@Override
public MutableIntBag toBag()
{
return this.delegate.toBag();
}
@Override
public T injectInto(T injectedValue, ObjectIntToObjectFunction super T, ? extends T> function)
{
return this.delegate.injectInto(injectedValue, function);
}
}