com.helger.commons.collection.impl.CommonsArrayList Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ph-commons Show documentation
Show all versions of ph-commons Show documentation
Java 1.8+ Library with tons of utility classes required in all projects
/*
* Copyright (C) 2014-2024 Philip Helger (www.helger.com)
* philip[at]helger[dot]com
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.helger.commons.collection.impl;
import java.util.ArrayList;
import java.util.Collection;
import java.util.Enumeration;
import java.util.function.Function;
import java.util.function.Predicate;
import javax.annotation.Nonnegative;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
import com.helger.commons.annotation.ReturnsMutableCopy;
import com.helger.commons.collection.ArrayHelper;
import com.helger.commons.collection.CollectionHelper;
/**
* A special {@link ArrayList} implementation based on {@link ICommonsList}.
*
* @author Philip Helger
* @param
* List element type
*/
public class CommonsArrayList extends ArrayList implements ICommonsList
{
// No logger here!
/**
* Create a new empty array list. The default initial capacity is used.
*/
public CommonsArrayList ()
{}
/**
* Create a new empty array list.
*
* @param nInitialCapacity
* The initial capacity for which memory is reserved. Must be > 0.
*/
public CommonsArrayList (@Nonnegative final int nInitialCapacity)
{
super (nInitialCapacity);
}
/**
* Create a new array list that contains the same elements as the provided
* collection.
*
* @param aValues
* The collection to copy the initial capacity and the elements from.
* May be null
.
* @see #addAll(Collection)
*/
public CommonsArrayList (@Nullable final Collection extends ELEMENTTYPE> aValues)
{
super (CollectionHelper.getSize (aValues));
if (aValues != null)
addAll (aValues);
}
/**
* Create a new array list with the default initial capacity and add all
* provided elements.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @see #addAll(Iterable)
*/
public CommonsArrayList (@Nullable final Iterable extends ELEMENTTYPE> aValues)
{
// Uses a special overload of "addAll"!
addAll (aValues);
}
/**
* Create a new array list with the default initial capacity and add all
* provided elements.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @see #addAll(Enumeration)
*/
public CommonsArrayList (@Nullable final Enumeration extends ELEMENTTYPE> aValues)
{
// Uses a special overload of "addAll"!
addAll (aValues);
}
/**
* Create a new array list that contains the mapped elements of the provided
* collection.
*
* @param aValues
* The collection to copy the initial capacity and the elements from.
* May be null
.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @see #addAllMapped(Iterable, Function)
* @param
* source data type
*/
public CommonsArrayList (@Nullable final Collection extends SRCTYPE> aValues,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper)
{
super (CollectionHelper.getSize (aValues));
addAllMapped (aValues, aMapper);
}
/**
* Create a new array list with the default initial capacity and add all
* mapped items of the provided iterable.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @see #addAllMapped(Iterable, Function)
* @param
* source data type
*/
public CommonsArrayList (@Nullable final Iterable extends SRCTYPE> aValues,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper)
{
addAllMapped (aValues, aMapper);
}
/**
* Create a new array list with an initial capacity of 1 and exactly the
* provided value, even if it is null
.
*
* @param aValue
* The value to be added. May be null
.
*/
public CommonsArrayList (@Nullable final ELEMENTTYPE aValue)
{
super (1);
add (aValue);
}
/**
* Create a new array list that contains the same elements as the provided
* array.
*
* @param aValues
* The array to copy the initial capacity and the elements from. May be
* null
.
* @see #addAll(Object...)
*/
@SafeVarargs
public CommonsArrayList (@Nullable final ELEMENTTYPE... aValues)
{
super (ArrayHelper.getSize (aValues));
addAll (aValues);
}
/**
* Create a new array list that contains mapped elements of the provided
* array.
*
* @param aValues
* The array to copy the initial capacity and the elements from. May be
* null
.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @see #addAllMapped(Object[], Function)
* @param
* source data type
*/
public CommonsArrayList (@Nullable final SRCTYPE [] aValues,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper)
{
super (ArrayHelper.getSize (aValues));
addAllMapped (aValues, aMapper);
}
@Override
@Nonnull
@ReturnsMutableCopy
public CommonsArrayList createInstance ()
{
return new CommonsArrayList <> ();
}
@Nonnull
@ReturnsMutableCopy
public CommonsArrayList getClone ()
{
return new CommonsArrayList <> (this);
}
/**
* Create a new array list that contains a subset of the provided
* iterable.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @param aFilter
* The filter to be applied to check if the element should be added or
* not.
* @return The created array list. Never null
.
* @see #addAll(Iterable, Predicate)
* @param
* data type to create the list of
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final Iterable extends ELEMENTTYPE> aValues,
@Nullable final Predicate super ELEMENTTYPE> aFilter)
{
final CommonsArrayList ret = new CommonsArrayList <> ();
ret.addAll (aValues, aFilter);
return ret;
}
/**
* Create a new array list that contains a subset of the provided iterable.
* This method filters the elements before they are mapped.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @param aFilter
* The filter to be applied to check if the element should be added or
* not.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @return The created array list. Never null
.
* @see #addAllMapped(Iterable, Predicate, Function)
* @param
* source data type
* @param
* final data type of the list
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final Iterable extends SRCTYPE> aValues,
@Nullable final Predicate super SRCTYPE> aFilter,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper)
{
final CommonsArrayList ret = new CommonsArrayList <> (CollectionHelper.getSize (aValues));
ret.addAllMapped (aValues, aFilter, aMapper);
return ret;
}
/**
* Create a new array list that contains a subset of the provided iterable.
* This method maps the elements before they are filtered.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The iterable from which the elements are copied from. May be
* null
.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @param aFilter
* The filter to be applied on the mapped element to check if the
* element should be added or not.
* @return The created array list. Never null
.
* @see #addAllMapped(Iterable, Function, Predicate)
* @since 9.1.3
* @param
* source data type
* @param
* final data type of the list
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final Iterable extends SRCTYPE> aValues,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper,
@Nullable final Predicate super ELEMENTTYPE> aFilter)
{
final CommonsArrayList ret = new CommonsArrayList <> (CollectionHelper.getSize (aValues));
ret.addAllMapped (aValues, aMapper, aFilter);
return ret;
}
/**
* Create a new array list that contains a subset of the provided array.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The array from which the elements are copied from. May be
* null
.
* @param aFilter
* The filter to be applied to check if the element should be added or
* not.
* @return The created array list. Never null
.
* @see #addAll(Object[], Predicate)
* @param
* data type of the list
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final ELEMENTTYPE [] aValues,
@Nullable final Predicate super ELEMENTTYPE> aFilter)
{
final CommonsArrayList ret = new CommonsArrayList <> (ArrayHelper.getSize (aValues));
ret.addAll (aValues, aFilter);
return ret;
}
/**
* Create a new array list that contains a subset of the provided array. This
* method filters the elements before they are mapped.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The array from which the elements are copied from. May be
* null
.
* @param aFilter
* The filter to be applied to check if the element should be added or
* not.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @return The created array list. Never null
.
* @see #addAllMapped(Object[], Predicate, Function)
* @param
* source data type
* @param
* final data type of the list
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final SRCTYPE [] aValues,
@Nullable final Predicate super SRCTYPE> aFilter,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper)
{
final CommonsArrayList ret = new CommonsArrayList <> (ArrayHelper.getSize (aValues));
ret.addAllMapped (aValues, aFilter, aMapper);
return ret;
}
/**
* Create a new array list that contains a subset of the provided array. This
* method maps the elements before they are filtered.
* Note: this method is a static factory method because the compiler sometimes
* cannot deduce between {@link Predicate} and {@link Function} and the
* mapping case occurs more often.
*
* @param aValues
* The array from which the elements are copied from. May be
* null
.
* @param aMapper
* The mapping function to be executed for all provided elements. May
* not be null
.
* @param aFilter
* The filter to be applied on the mapped element to check if the
* element should be added or not.
* @return The created array list. Never null
.
* @see #addAllMapped(Iterable, Function, Predicate)
* @since 9.1.3
* @param
* source data type
* @param
* final data type of the list
*/
@Nonnull
@ReturnsMutableCopy
public static CommonsArrayList createFiltered (@Nullable final SRCTYPE [] aValues,
@Nonnull final Function super SRCTYPE, ? extends ELEMENTTYPE> aMapper,
@Nullable final Predicate super ELEMENTTYPE> aFilter)
{
final CommonsArrayList ret = new CommonsArrayList <> (ArrayHelper.getSize (aValues));
ret.addAllMapped (aValues, aMapper, aFilter);
return ret;
}
}