java.lang.Iterable<T>
, java.util.Collection<T>
, java.util.List<T>
, java.util.RandomAccess
public final class AttachmentList<T>
extends java.lang.Object
implements java.util.List<T>, java.util.RandomAccess
Constructor | Description |
---|---|
AttachmentList(int initialCapacity,
java.lang.Class<T> valueClass) |
|
AttachmentList(java.lang.Class<T> valueClass) |
|
AttachmentList(java.util.Collection<? extends T> c,
java.lang.Class<T> valueClass) |
Modifier and Type | Method | Description |
---|---|---|
void |
add(int index,
T element) |
|
boolean |
add(T t) |
|
boolean |
addAll(int index,
java.util.Collection<? extends T> c) |
|
boolean |
addAll(java.util.Collection<? extends T> c) |
|
void |
clear() |
|
boolean |
contains(java.lang.Object o) |
|
boolean |
containsAll(java.util.Collection<?> c) |
|
boolean |
equals(java.lang.Object o) |
|
T |
get(int index) |
|
java.lang.Class<T> |
getValueClass() |
|
int |
hashCode() |
|
int |
indexOf(java.lang.Object o) |
|
boolean |
isEmpty() |
|
java.util.Iterator<T> |
iterator() |
|
int |
lastIndexOf(java.lang.Object o) |
|
java.util.ListIterator<T> |
listIterator() |
|
java.util.ListIterator<T> |
listIterator(int index) |
|
T |
remove(int index) |
|
boolean |
remove(java.lang.Object o) |
|
boolean |
removeAll(java.util.Collection<?> c) |
|
boolean |
retainAll(java.util.Collection<?> c) |
|
T |
set(int index,
T element) |
|
int |
size() |
|
java.util.List<T> |
subList(int fromIndex,
int toIndex) |
|
java.lang.Object[] |
toArray() |
|
<T> T[] |
toArray(T[] a) |
public AttachmentList(int initialCapacity, java.lang.Class<T> valueClass)
public AttachmentList(java.lang.Class<T> valueClass)
public java.lang.Class<T> getValueClass()
public int size()
public boolean isEmpty()
public boolean contains(java.lang.Object o)
public java.util.Iterator<T> iterator()
public java.lang.Object[] toArray()
public <T> T[] toArray(T[] a)
public boolean add(T t)
public boolean remove(java.lang.Object o)
public boolean containsAll(java.util.Collection<?> c)
public boolean addAll(java.util.Collection<? extends T> c)
public boolean addAll(int index, java.util.Collection<? extends T> c)
addAll
in interface java.util.List<T>
public boolean removeAll(java.util.Collection<?> c)
public boolean retainAll(java.util.Collection<?> c)
public void clear()
public boolean equals(java.lang.Object o)
public int hashCode()
public int indexOf(java.lang.Object o)
indexOf
in interface java.util.List<T>
public int lastIndexOf(java.lang.Object o)
lastIndexOf
in interface java.util.List<T>
public java.util.ListIterator<T> listIterator()
listIterator
in interface java.util.List<T>
public java.util.ListIterator<T> listIterator(int index)
listIterator
in interface java.util.List<T>
Copyright © 2018. All rights reserved.