| Modifier and Type | Method and Description |
|---|---|
LombokImmutableList<T> |
append(T newValue) |
boolean |
contains(T in) |
static <T> LombokImmutableList<T> |
copyOf(Collection<? extends T> list) |
static <T> LombokImmutableList<T> |
copyOf(Iterable<? extends T> iterable) |
boolean |
equals(Object obj) |
T |
get(int idx) |
int |
hashCode() |
int |
indexOf(T val) |
boolean |
isEmpty() |
Iterator<T> |
iterator() |
static <T> LombokImmutableList<T> |
of() |
static <T> LombokImmutableList<T> |
of(T a) |
static <T> LombokImmutableList<T> |
of(T a,
T b) |
static <T> LombokImmutableList<T> |
of(T a,
T b,
T c) |
static <T> LombokImmutableList<T> |
of(T a,
T b,
T c,
T d) |
static <T> LombokImmutableList<T> |
of(T a,
T b,
T c,
T d,
T e) |
static <T> LombokImmutableList<T> |
of(T a,
T b,
T c,
T d,
T e,
T f,
T... g) |
LombokImmutableList<T> |
prepend(T newValue) |
LombokImmutableList<T> |
removeElement(T val) |
LombokImmutableList<T> |
removeElementAt(int idx) |
LombokImmutableList<T> |
replaceElementAt(int idx,
T newValue) |
int |
size() |
String |
toString() |
public static <T> LombokImmutableList<T> of()
public static <T> LombokImmutableList<T> of(T a)
public static <T> LombokImmutableList<T> of(T a, T b)
public static <T> LombokImmutableList<T> of(T a, T b, T c)
public static <T> LombokImmutableList<T> of(T a, T b, T c, T d)
public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e)
public static <T> LombokImmutableList<T> of(T a, T b, T c, T d, T e, T f, T... g)
public static <T> LombokImmutableList<T> copyOf(Collection<? extends T> list)
public static <T> LombokImmutableList<T> copyOf(Iterable<? extends T> iterable)
public LombokImmutableList<T> replaceElementAt(int idx, T newValue)
public LombokImmutableList<T> append(T newValue)
public LombokImmutableList<T> prepend(T newValue)
public int indexOf(T val)
public LombokImmutableList<T> removeElement(T val)
public LombokImmutableList<T> removeElementAt(int idx)
public boolean isEmpty()
public int size()
public T get(int idx)
public boolean contains(T in)
Copyright © 2011 The Project Lombok Authors, licensed under the MIT licence.