public interface ObjectsModifiable extends Objects
Modifier and Type | Method and Description |
---|---|
void |
append(Object v) |
void |
append(Object[] vs) |
void |
append(Object[] vs,
int from,
int to) |
void |
append(Objects vs) |
void |
append(Objects vs,
int from,
int to) |
void |
clear() |
void |
compact() |
void |
ensureCapacity(int minCapacity) |
void |
insert(int i,
Object v) |
void |
insert(int i,
Object[] vs) |
void |
insert(int i,
Object[] vs,
int from,
int to) |
void |
insert(int i,
Objects vs) |
void |
insert(int i,
Objects vs,
int from,
int to) |
void |
prepend(Object v) |
void |
prepend(Object[] vs) |
void |
prepend(Object[] vs,
int from,
int to) |
void |
prepend(Objects vs) |
void |
prepend(Objects vs,
int from,
int to) |
void |
remove(Object v)
Removes a single copy of the specified value.
|
void |
removeIndex(int index)
Remove value at index.
|
void |
removeRange(int from,
int to)
Removes values starting at index from (inclusive) to index to (exclusive).
|
void |
set(int i,
Object v) |
void |
set(int i,
Object[] vs) |
void |
set(int i,
Object[] vs,
int from,
int to) |
void set(int i, Object v)
void set(int i, Object[] vs)
void set(int i, Object[] vs, int from, int to)
void insert(int i, Object v)
void insert(int i, Object[] vs)
void insert(int i, Objects vs)
void insert(int i, Object[] vs, int from, int to)
void insert(int i, Objects vs, int from, int to)
void append(Object v)
void append(Object[] vs)
void append(Objects vs)
void append(Object[] vs, int from, int to)
void append(Objects vs, int from, int to)
void prepend(Object v)
void prepend(Object[] vs)
void prepend(Objects vs)
void prepend(Object[] vs, int from, int to)
void prepend(Objects vs, int from, int to)
void remove(Object v)
void removeRange(int from, int to)
void removeIndex(int index)
void clear()
void ensureCapacity(int minCapacity)
void compact()
Copyright © 2013 Metron, Inc.. All rights reserved.