public abstract class CachedTypedJsonArray<T> extends TypedJsonArray<T>
json| Constructor and Description |
|---|
CachedTypedJsonArray() |
| 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) |
io.apptik.json.JsonArray |
getJson() |
int |
indexOf(java.lang.Object o) |
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) |
java.lang.Object[] |
toArray() |
<T1> T1[] |
toArray(T1[] t1s) |
<T extends JsonElementWrapper> |
wrap(io.apptik.json.JsonArray jsonElement) |
get, isEmpty, toaddSchemaFetcher, 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 TypedJsonArray<T>public T get(int i)
get in interface java.util.List<T>get in class TypedJsonArray<T>public T set(int i, T t)
set in interface java.util.List<T>set in class TypedJsonArray<T>public void add(int i,
T t)
add in interface java.util.List<T>add in class TypedJsonArray<T>public T remove(int i)
remove in interface java.util.List<T>remove in class TypedJsonArray<T>public int indexOf(java.lang.Object o)
indexOf in interface java.util.List<T>indexOf in class TypedJsonArray<T>public int lastIndexOf(java.lang.Object o)
lastIndexOf in interface java.util.List<T>lastIndexOf in class TypedJsonArray<T>public java.util.ListIterator<T> listIterator()
listIterator in interface java.util.List<T>listIterator in class TypedJsonArray<T>public java.util.ListIterator<T> listIterator(int i)
listIterator in interface java.util.List<T>listIterator in class TypedJsonArray<T>public java.util.List<T> subList(int i, int i2)
subList in interface java.util.List<T>subList in class TypedJsonArray<T>public void clear()
clear in interface java.util.Collection<T>clear in interface java.util.List<T>clear in class TypedJsonArray<T>public boolean retainAll(java.util.Collection<?> objects)
retainAll in interface java.util.Collection<T>retainAll in interface java.util.List<T>retainAll in class TypedJsonArray<T>public boolean removeAll(java.util.Collection<?> objects)
removeAll in interface java.util.Collection<T>removeAll in interface java.util.List<T>removeAll in class TypedJsonArray<T>public boolean addAll(int i,
java.util.Collection<? extends T> ts)
addAll in interface java.util.List<T>addAll in class TypedJsonArray<T>public boolean addAll(java.util.Collection<? extends T> ts)
addAll in interface java.util.Collection<T>addAll in interface java.util.List<T>addAll in class TypedJsonArray<T>public boolean containsAll(java.util.Collection<?> objects)
containsAll in interface java.util.Collection<T>containsAll in interface java.util.List<T>containsAll in class TypedJsonArray<T>public boolean remove(java.lang.Object o)
remove in interface java.util.Collection<T>remove in interface java.util.List<T>remove in class TypedJsonArray<T>public boolean add(T t)
add in interface java.util.Collection<T>add in interface java.util.List<T>add in class TypedJsonArray<T>public java.util.Iterator<T> iterator()
public boolean contains(java.lang.Object o)
contains in interface java.util.Collection<T>contains in interface java.util.List<T>contains in class TypedJsonArray<T>public int size()
size in interface java.util.Collection<T>size in interface java.util.List<T>size in class TypedJsonArray<T>public java.lang.Object[] toArray()
toArray in interface java.util.Collection<T>toArray in interface java.util.List<T>toArray in class TypedJsonArray<T>public <T1> T1[] toArray(T1[] t1s)
toArray in interface java.util.Collection<T>toArray in interface java.util.List<T>toArray in class TypedJsonArray<T>public io.apptik.json.JsonArray getJson()
getJson in interface io.apptik.json.ElementWrappergetJson in class TypedJsonArray<T>