public abstract class JsonArrayTypeConvert<T> extends JsonTypeConvert implements List<T>, Cloneable, RandomAccess, Serializable
| 构造器和说明 |
|---|
JsonArrayTypeConvert() |
JsonArrayTypeConvert(int initialCapacity) |
JsonArrayTypeConvert(List<Object> list) |
| 限定符和类型 | 方法和说明 |
|---|---|
void |
add(int index,
T element) |
boolean |
add(T object) |
boolean |
addAll(Collection<? extends T> c) |
boolean |
addAll(int index,
Collection<? extends T> c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
T |
get(int index) |
Class<T> |
getElementClass() |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<T> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<T> |
listIterator() |
ListIterator<T> |
listIterator(int index) |
T |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
T |
set(int index,
T element) |
int |
size() |
List<T> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<E> E[] |
toArray(E[] a) |
toStringclone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitequals, hashCode, replaceAll, sort, spliteratorparallelStream, removeIf, streampublic JsonArrayTypeConvert()
public JsonArrayTypeConvert(int initialCapacity)
public boolean contains(Object o)
public boolean containsAll(Collection<?> c)
containsAll 在接口中 Collection<T>containsAll 在接口中 List<T>public boolean addAll(Collection<? extends T> c)
public boolean addAll(int index,
Collection<? extends T> c)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public int lastIndexOf(Object o)
lastIndexOf 在接口中 List<T>public ListIterator<T> listIterator()
listIterator 在接口中 List<T>public ListIterator<T> listIterator(int index)
listIterator 在接口中 List<T>Copyright © 2022–2023. All rights reserved.