Class Lists
- java.lang.Object
-
- com.google.common.collect.Lists
-
@GwtCompatible(emulated=true) public final class Lists extends java.lang.Object
Static utility methods pertaining toList
instances. Also see this class's counterpartsSets
,Maps
andQueues
.See the Guava User Guide article on
Lists
.- Since:
- 2.0 (imported from Google Collections Library)
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <E> java.util.List<E>
asList(E first, E[] rest)
Returns an unmodifiable list containing the specified first element and backed by the specified array of additional elements.static <E> java.util.List<E>
asList(E first, E second, E[] rest)
Returns an unmodifiable list containing the specified first and second element, and backed by the specified array of additional elements.static java.util.List<java.lang.Character>
charactersOf(java.lang.CharSequence sequence)
Returns a view of the specifiedCharSequence
as aList<Character>
, viewingsequence
as a sequence of Unicode code units.static ImmutableList<java.lang.Character>
charactersOf(java.lang.String string)
Returns a view of the specified string as an immutable list ofCharacter
values.static <E> java.util.ArrayList<E>
newArrayList()
Creates a mutable, emptyArrayList
instance.static <E> java.util.ArrayList<E>
newArrayList(E... elements)
Creates a mutableArrayList
instance containing the given elements.static <E> java.util.ArrayList<E>
newArrayList(java.lang.Iterable<? extends E> elements)
Creates a mutableArrayList
instance containing the given elements.static <E> java.util.ArrayList<E>
newArrayList(java.util.Iterator<? extends E> elements)
Creates a mutableArrayList
instance containing the given elements.static <E> java.util.ArrayList<E>
newArrayListWithCapacity(int initialArraySize)
Creates anArrayList
instance backed by an array of the exact size specified; equivalent toArrayList(int)
.static <E> java.util.ArrayList<E>
newArrayListWithExpectedSize(int estimatedSize)
Creates anArrayList
instance sized appropriately to hold an estimated number of elements without resizing.static <E> java.util.LinkedList<E>
newLinkedList()
Creates an emptyLinkedList
instance.static <E> java.util.LinkedList<E>
newLinkedList(java.lang.Iterable<? extends E> elements)
Creates aLinkedList
instance containing the given elements.static <T> java.util.List<java.util.List<T>>
partition(java.util.List<T> list, int size)
Returns consecutive sublists of a list, each of the same size (the final list may be smaller).static <T> java.util.List<T>
reverse(java.util.List<T> list)
Returns a reversed view of the specified list.static <F,T>
java.util.List<T>transform(java.util.List<F> fromList, Function<? super F,? extends T> function)
Returns a list that appliesfunction
to each element offromList
.
-
-
-
Method Detail
-
newArrayList
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayList()
Creates a mutable, emptyArrayList
instance.Note: if mutability is not required, use
ImmutableList.of()
instead.- Returns:
- a new, empty
ArrayList
-
newArrayList
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayList(E... elements)
Creates a mutableArrayList
instance containing the given elements.Note: if mutability is not required and the elements are non-null, use an overload of
ImmutableList.of()
(for varargs) orImmutableList.copyOf(Object[])
(for an array) instead.- Parameters:
elements
- the elements that the list should contain, in order- Returns:
- a new
ArrayList
containing those elements
-
newArrayList
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayList(java.lang.Iterable<? extends E> elements)
Creates a mutableArrayList
instance containing the given elements.Note: if mutability is not required and the elements are non-null, use
ImmutableList.copyOf(Iterator)
instead.- Parameters:
elements
- the elements that the list should contain, in order- Returns:
- a new
ArrayList
containing those elements
-
newArrayList
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayList(java.util.Iterator<? extends E> elements)
Creates a mutableArrayList
instance containing the given elements.Note: if mutability is not required and the elements are non-null, use
ImmutableList.copyOf(Iterator)
instead.- Parameters:
elements
- the elements that the list should contain, in order- Returns:
- a new
ArrayList
containing those elements
-
newArrayListWithCapacity
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayListWithCapacity(int initialArraySize)
Creates anArrayList
instance backed by an array of the exact size specified; equivalent toArrayList(int)
.Note: if you know the exact size your list will be, consider using a fixed-size list (
Arrays.asList(Object[])
) or anImmutableList
instead of a growableArrayList
.Note: If you have only an estimate of the eventual size of the list, consider padding this estimate by a suitable amount, or simply use
newArrayListWithExpectedSize(int)
instead.- Parameters:
initialArraySize
- the exact size of the initial backing array for the returned array list (ArrayList
documentation calls this value the "capacity")- Returns:
- a new, empty
ArrayList
which is guaranteed not to resize itself unless its size reachesinitialArraySize + 1
- Throws:
java.lang.IllegalArgumentException
- ifinitialArraySize
is negative
-
newArrayListWithExpectedSize
@GwtCompatible(serializable=true) public static <E> java.util.ArrayList<E> newArrayListWithExpectedSize(int estimatedSize)
Creates anArrayList
instance sized appropriately to hold an estimated number of elements without resizing. A small amount of padding is added in case the estimate is low.Note: If you know the exact number of elements the list will hold, or prefer to calculate your own amount of padding, refer to
newArrayListWithCapacity(int)
.- Parameters:
estimatedSize
- an estimate of the eventualList.size()
of the new list- Returns:
- a new, empty
ArrayList
, sized appropriately to hold the estimated number of elements - Throws:
java.lang.IllegalArgumentException
- ifestimatedSize
is negative
-
newLinkedList
@GwtCompatible(serializable=true) public static <E> java.util.LinkedList<E> newLinkedList()
Creates an emptyLinkedList
instance.Note: if you need an immutable empty
List
, useImmutableList.of()
instead.- Returns:
- a new, empty
LinkedList
-
newLinkedList
@GwtCompatible(serializable=true) public static <E> java.util.LinkedList<E> newLinkedList(java.lang.Iterable<? extends E> elements)
Creates aLinkedList
instance containing the given elements.- Parameters:
elements
- the elements that the list should contain, in order- Returns:
- a new
LinkedList
containing those elements
-
asList
public static <E> java.util.List<E> asList(@Nullable E first, E[] rest)
Returns an unmodifiable list containing the specified first element and backed by the specified array of additional elements. Changes to therest
array will be reflected in the returned list. UnlikeArrays.asList(T...)
, the returned list is unmodifiable.This is useful when a varargs method needs to use a signature such as
(Foo firstFoo, Foo... moreFoos)
, in order to avoid overload ambiguity or to enforce a minimum argument count.The returned list is serializable and implements
RandomAccess
.- Parameters:
first
- the first elementrest
- an array of additional elements, possibly empty- Returns:
- an unmodifiable list containing the specified elements
-
asList
public static <E> java.util.List<E> asList(@Nullable E first, @Nullable E second, E[] rest)
Returns an unmodifiable list containing the specified first and second element, and backed by the specified array of additional elements. Changes to therest
array will be reflected in the returned list. UnlikeArrays.asList(T...)
, the returned list is unmodifiable.This is useful when a varargs method needs to use a signature such as
(Foo firstFoo, Foo secondFoo, Foo... moreFoos)
, in order to avoid overload ambiguity or to enforce a minimum argument count.The returned list is serializable and implements
RandomAccess
.- Parameters:
first
- the first elementsecond
- the second elementrest
- an array of additional elements, possibly empty- Returns:
- an unmodifiable list containing the specified elements
-
transform
public static <F,T> java.util.List<T> transform(java.util.List<F> fromList, Function<? super F,? extends T> function)
Returns a list that appliesfunction
to each element offromList
. The returned list is a transformed view offromList
; changes tofromList
will be reflected in the returned list and vice versa.Since functions are not reversible, the transform is one-way and new items cannot be stored in the returned list. The
add
,addAll
andset
methods are unsupported in the returned list.The function is applied lazily, invoked when needed. This is necessary for the returned list to be a view, but it means that the function will be applied many times for bulk operations like
List.contains(java.lang.Object)
andList.hashCode()
. For this to perform well,function
should be fast. To avoid lazy evaluation when the returned list doesn't need to be a view, copy the returned list into a new list of your choosing.If
fromList
implementsRandomAccess
, so will the returned list. The returned list is threadsafe if the supplied list and function are.If only a
Collection
orIterable
input is available, useCollections2.transform(java.util.Collection<F>, com.google.common.base.Function<? super F, T>)
orIterables.transform(java.lang.Iterable<F>, com.google.common.base.Function<? super F, ? extends T>)
.Note: serializing the returned list is implemented by serializing
fromList
, its contents, andfunction
-- not by serializing the transformed values. This can lead to surprising behavior, so serializing the returned list is not recommended. Instead, copy the list usingImmutableList.copyOf(Collection)
(for example), then serialize the copy. Other methods similar to this do not implement serialization at all for this reason.
-
partition
public static <T> java.util.List<java.util.List<T>> partition(java.util.List<T> list, int size)
Returns consecutive sublists of a list, each of the same size (the final list may be smaller). For example, partitioning a list containing[a, b, c, d, e]
with a partition size of 3 yields[[a, b, c], [d, e]]
-- an outer list containing two inner lists of three and two elements, all in the original order.The outer list is unmodifiable, but reflects the latest state of the source list. The inner lists are sublist views of the original list, produced on demand using
List.subList(int, int)
, and are subject to all the usual caveats about modification as explained in that API.- Parameters:
list
- the list to return consecutive sublists ofsize
- the desired size of each sublist (the last may be smaller)- Returns:
- a list of consecutive sublists
- Throws:
java.lang.IllegalArgumentException
- ifpartitionSize
is nonpositive
-
charactersOf
@Beta public static ImmutableList<java.lang.Character> charactersOf(java.lang.String string)
Returns a view of the specified string as an immutable list ofCharacter
values.- Since:
- 7.0
-
charactersOf
@Beta public static java.util.List<java.lang.Character> charactersOf(java.lang.CharSequence sequence)
Returns a view of the specifiedCharSequence
as aList<Character>
, viewingsequence
as a sequence of Unicode code units. The view does not support any modification operations, but reflects any changes to the underlying character sequence.- Parameters:
sequence
- the character sequence to view as aList
of characters- Returns:
- an
List<Character>
view of the character sequence - Since:
- 7.0
-
reverse
public static <T> java.util.List<T> reverse(java.util.List<T> list)
Returns a reversed view of the specified list. For example,Lists.reverse(Arrays.asList(1, 2, 3))
returns a list containing3, 2, 1
. The returned list is backed by this list, so changes in the returned list are reflected in this list, and vice-versa. The returned list supports all of the optional list operations supported by this list.The returned list is random-access if the specified list is random access.
- Since:
- 7.0
-
-