| Modifier and Type | Class and Description |
|---|---|
class |
Array.ListArrayIterator |
class |
Array.TypedArrayIterator<T> |
| Constructor and Description |
|---|
Array() |
Array(int cap) |
Array(List<Object> lst) |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Object element) |
boolean |
add(Object o) |
boolean |
addAll(Collection<? extends Object> i) |
boolean |
addAll(int index,
Collection<? extends Object> c) |
Iterable<String> |
asStrings() |
Iterable<Struct> |
asStructs() |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> c) |
Array |
copy() |
static Array |
empty() |
boolean |
equals(Object another) |
static Array |
from(Iterable<?> items) |
Object |
get(int idx) |
Array |
getArray(int idx) |
boolean |
getBoolean(int idx) |
byte |
getByte(int idx) |
byte[] |
getBytes(int idx) |
double |
getDouble(int idx) |
float |
getFloat(int idx) |
int |
getInt(int idx) |
long |
getLong(int idx) |
short |
getShort(int idx) |
String |
getString(int idx) |
Struct |
getStruct(int idx) |
Timestamp |
getTimestamp(int idx) |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<Object> |
iterator() |
int |
lastIndexOf(Object o) |
ListIterator<Object> |
listIterator() |
ListIterator<Object> |
listIterator(int index) |
Object |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
Object |
set(int index,
Object element) |
int |
size() |
Array |
slice(int start,
int end) |
List<Object> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
String |
toString() |
Array |
with(Object o) |
Array |
without(Object o) |
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waithashCode, replaceAll, sort, spliteratorparallelStream, removeIf, streampublic static Array empty()
public boolean add(Object o)
public boolean addAll(Collection<? extends Object> i)
public Array slice(int start, int end)
public Array copy()
public int size()
public String getString(int idx)
public Struct getStruct(int idx)
public Array getArray(int idx)
public Timestamp getTimestamp(int idx)
public byte[] getBytes(int idx)
public boolean getBoolean(int idx)
public byte getByte(int idx)
public short getShort(int idx)
public int getInt(int idx)
public long getLong(int idx)
public float getFloat(int idx)
public double getDouble(int idx)
public boolean equals(Object another)
public int lastIndexOf(Object o)
lastIndexOf in interface List<Object>public void clear()
public boolean isEmpty()
public boolean remove(Object o)
public boolean containsAll(Collection<?> c)
containsAll in interface Collection<Object>containsAll in interface List<Object>public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public boolean addAll(int index,
Collection<? extends Object> c)
public ListIterator<Object> listIterator()
listIterator in interface List<Object>public ListIterator<Object> listIterator(int index)
listIterator in interface List<Object>public Object[] toArray()
public boolean contains(Object o)
Copyright © 2016–2021 Verizon Media. All rights reserved.