com.github.andrewoma.dexx.collection
Class LinkedLists

java.lang.Object
  extended by com.github.andrewoma.dexx.collection.LinkedLists

public class LinkedLists
extends Object

LinkedLists is the preferred method of constructing instances of LinkedList.

ConsList is currently constructed in all cases, however this may change in the future.

LinkedLists is preferred for construction as:


Method Summary
static
<E> Builder<E,LinkedList<E>>
builder()
           
static
<E> LinkedList<E>
copyOf(E[] es)
           
static
<E> LinkedList<E>
copyOf(Iterable<E> iterable)
           
static
<E> LinkedList<E>
copyOf(Iterator<E> iterator)
           
static
<E> LinkedList<E>
copyOfTraversable(Traversable<E> traversable)
           
static
<E> BuilderFactory<E,LinkedList<E>>
factory()
           
static
<E> LinkedList<E>
of()
           
static
<E> LinkedList<E>
of(E t)
           
static
<E> LinkedList<E>
of(E e1, E e2)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6, E e7)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10)
           
static
<E> LinkedList<E>
of(E e1, E e2, E e3, E e4, E e5, E e6, E e7, E e8, E e9, E e10, E... others)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

of

@NotNull
public static <E> LinkedList<E> of()

of

@NotNull
public static <E> LinkedList<E> of(E t)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6,
                                           E e7)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6,
                                           E e7,
                                           E e8)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6,
                                           E e7,
                                           E e8,
                                           E e9)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6,
                                           E e7,
                                           E e8,
                                           E e9,
                                           E e10)

of

@NotNull
public static <E> LinkedList<E> of(E e1,
                                           E e2,
                                           E e3,
                                           E e4,
                                           E e5,
                                           E e6,
                                           E e7,
                                           E e8,
                                           E e9,
                                           E e10,
                                           E... others)

copyOf

@NotNull
public static <E> LinkedList<E> copyOf(Iterable<E> iterable)

copyOf

@NotNull
public static <E> LinkedList<E> copyOf(Iterator<E> iterator)

copyOf

@NotNull
public static <E> LinkedList<E> copyOf(E[] es)

copyOfTraversable

@NotNull
public static <E> LinkedList<E> copyOfTraversable(Traversable<E> traversable)

factory

@NotNull
public static <E> BuilderFactory<E,LinkedList<E>> factory()

builder

@NotNull
public static <E> Builder<E,LinkedList<E>> builder()


Copyright © 2014. All Rights Reserved.