T - The typepublic abstract class TypedJsonArray<T> extends JsonElementWrapper<io.apptik.json.JsonArray> implements java.util.List<T>
CachedTypedJsonArrayjson| Constructor and Description |
|---|
TypedJsonArray() |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int i,
T t) |
boolean |
add(T t) |
boolean |
addAll(java.util.Collection<? extends T> ts) |
boolean |
addAll(int i,
java.util.Collection<? extends T> ts) |
void |
clear() |
boolean |
contains(java.lang.Object o) |
boolean |
containsAll(java.util.Collection<?> objects) |
T |
get(int i) |
protected abstract T |
get(io.apptik.json.JsonElement jsonElement,
int pos) |
io.apptik.json.JsonArray |
getJson() |
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 i) |
T |
remove(int i) |
boolean |
remove(java.lang.Object o) |
boolean |
removeAll(java.util.Collection<?> objects) |
boolean |
retainAll(java.util.Collection<?> objects) |
T |
set(int i,
T t) |
int |
size() |
java.util.List<T> |
subList(int i,
int i2) |
protected abstract io.apptik.json.JsonElement |
to(T value) |
java.lang.Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] t1s) |
<T extends JsonElementWrapper> |
wrap(io.apptik.json.JsonArray jsonElement) |
addSchemaFetcher, addValidator, fetchMetaInfo, getContentType, getDefaultSchemaFetcher, getJsonSchemaUri, getMetaInfo, getValidators, isDataValid, setContentType, setDefaultSchemaFetcher, setMetaInfo, setMetaInfoUri, setSchemaFetchers, toString, validateDatapublic <T extends JsonElementWrapper> T wrap(io.apptik.json.JsonArray jsonElement)
wrap in class JsonElementWrapper<io.apptik.json.JsonArray>public io.apptik.json.JsonArray getJson()
getJson in interface io.apptik.json.ElementWrappergetJson in class JsonElementWrapper<io.apptik.json.JsonArray>protected abstract T get(io.apptik.json.JsonElement jsonElement, int pos)
protected abstract io.apptik.json.JsonElement to(T value)
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 <T1> T1[] toArray(T1[] t1s)
public boolean add(T t)
public boolean remove(java.lang.Object o)
public boolean containsAll(java.util.Collection<?> objects)
public boolean addAll(java.util.Collection<? extends T> ts)
public boolean addAll(int i,
java.util.Collection<? extends T> ts)
addAll in interface java.util.List<T>public boolean removeAll(java.util.Collection<?> objects)
public boolean retainAll(java.util.Collection<?> objects)
public void clear()
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 i)
listIterator in interface java.util.List<T>