org.mozilla.javascript
public class ObjArray extends Object implements Serializable
Constructor Summary | |
---|---|
ObjArray() |
Method Summary | |
---|---|
void | add(Object value) |
void | add(int index, Object value) |
void | clear() |
Object | get(int index) |
int | indexOf(Object obj) |
boolean | isEmpty() |
boolean | isSealed() |
int | lastIndexOf(Object obj) |
Object | peek() |
Object | pop() |
void | push(Object value) |
void | remove(int index) |
void | seal() |
void | set(int index, Object value) |
void | setSize(int newSize) |
int | size() |
Object[] | toArray() |
void | toArray(Object[] array) |
void | toArray(Object[] array, int offset) |