|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.python.core.PyObject
org.python.core.PySequence
org.python.core.AstList
public class AstList
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.python.core.PyObject |
---|
PyObject.ConversionException |
Field Summary | |
---|---|
static PyType |
TYPE
|
Constructor Summary | |
---|---|
AstList()
|
|
AstList(List data)
|
|
AstList(List data,
org.python.antlr.adapter.AstAdapter adapter)
|
|
AstList(PyType type,
List data,
org.python.antlr.adapter.AstAdapter adapter)
|
Method Summary | |
---|---|
PyObject |
__add__(PyObject other)
Equivalent to the standard Python __add__ method |
PyObject |
__iadd__(PyObject other)
Equivalent to the standard Python __iadd__ method |
PyObject |
__imul__(PyObject o)
Equivalent to the standard Python __imul__ method |
int |
__len__()
Equivalent to the standard Python __len__ method. |
PyObject |
__mul__(PyObject o)
Equivalent to the standard Python __mul__ method |
PyObject |
__radd__(PyObject o)
Equivalent to the standard Python __radd__ method |
PyObject |
__rmul__(PyObject o)
Equivalent to the standard Python __rmul__ method |
Object |
__tojava__(Class c)
Equivalent to the Jython __tojava__ method. |
void |
add(int index,
Object element)
|
boolean |
add(Object o)
|
boolean |
addAll(Collection c)
|
boolean |
addAll(int index,
Collection c)
|
void |
append(PyObject o)
|
PyObject |
astlist___iter__()
|
void |
clear()
|
Object |
clone()
|
boolean |
contains(Object o)
|
boolean |
containsAll(Collection c)
|
int |
count(PyObject value)
|
void |
extend(PyObject iterable)
|
PyString[] |
get_fields()
|
Object |
get(int index)
|
int |
index(PyObject o)
|
int |
index(PyObject o,
int start)
|
int |
index(PyObject o,
int start,
int stop)
|
int |
indexOf(Object o)
|
void |
insert(int index,
PyObject o)
|
boolean |
isEmpty()
|
Iterator |
iterator()
|
int |
lastIndexOf(Object o)
|
ListIterator |
listIterator()
|
ListIterator |
listIterator(int index)
|
PyObject |
pop()
|
PyObject |
pop(int n)
|
void |
pyadd(int index,
PyObject element)
|
boolean |
pyadd(PyObject o)
|
PyObject |
pyget(int index)
|
void |
pyset(int index,
PyObject element)
Sets the given element of the sequence. |
Object |
remove(int index)
|
boolean |
remove(Object o)
|
void |
remove(PyObject value)
|
boolean |
removeAll(Collection c)
|
boolean |
retainAll(Collection c)
|
void |
reverse()
|
Object |
set(int index,
Object element)
|
int |
size()
|
List |
subList(int fromIndex,
int toIndex)
|
Object[] |
toArray()
|
Object[] |
toArray(Object[] a)
|
String |
toString()
|
Methods inherited from class org.python.core.PySequence |
---|
__delitem__, __delslice__, __eq__, __finditem__, __finditem__, __ge__, __getitem__, __getslice__, __gt__, __iter__, __le__, __lt__, __ne__, __nonzero__, __setitem__, __setitem__, __setslice__, isMappingType, isNumberType, isSequenceType |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
equals, hashCode |
Field Detail |
---|
public static final PyType TYPE
Constructor Detail |
---|
public AstList()
public AstList(List data)
public AstList(List data, org.python.antlr.adapter.AstAdapter adapter)
public AstList(PyType type, List data, org.python.antlr.adapter.AstAdapter adapter)
Method Detail |
---|
public PyString[] get_fields()
public PyObject astlist___iter__()
public PyObject __imul__(PyObject o)
PyObject
__imul__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __mul__(PyObject o)
PyObject
__mul__
in class PyObject
o
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmul__(PyObject o)
PyObject
__rmul__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).
public PyObject __iadd__(PyObject other)
PyObject
__iadd__
in class PyObject
other
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __add__(PyObject other)
PyObject
__add__
in class PyObject
other
- the object to perform this binary operation with
(the right-hand operand).
public PyObject __radd__(PyObject o)
PyObject
__radd__
in class PyObject
o
- the object to perform this binary operation with
(the left-hand operand).
public int __len__()
PyObject
__len__
in class PyObject
public String toString()
toString
in class PyObject
public void append(PyObject o)
public Object clone()
clone
in class Object
public int count(PyObject value)
public int index(PyObject o)
public int index(PyObject o, int start)
public int index(PyObject o, int start, int stop)
public void extend(PyObject iterable)
public void insert(int index, PyObject o)
public void remove(PyObject value)
public void reverse()
public PyObject pop()
public PyObject pop(int n)
public void add(int index, Object element)
add
in interface List
public boolean add(Object o)
add
in interface Collection
add
in interface List
public boolean addAll(int index, Collection c)
addAll
in interface List
public boolean addAll(Collection c)
addAll
in interface Collection
addAll
in interface List
public void clear()
clear
in interface Collection
clear
in interface List
public boolean contains(Object o)
contains
in interface Collection
contains
in interface List
public boolean containsAll(Collection c)
containsAll
in interface Collection
containsAll
in interface List
public Object get(int index)
get
in interface List
public int indexOf(Object o)
indexOf
in interface List
public boolean isEmpty()
isEmpty
in interface Collection
isEmpty
in interface List
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
iterator
in interface List
public int lastIndexOf(Object o)
lastIndexOf
in interface List
public ListIterator listIterator()
listIterator
in interface List
public ListIterator listIterator(int index)
listIterator
in interface List
public boolean pyadd(PyObject o)
public void pyadd(int index, PyObject element)
public PyObject pyget(int index)
index
- index of element to return.
public void pyset(int index, PyObject element)
PySequence
index
- index of the element to set.element
- the value to set this element to.public Object remove(int index)
remove
in interface List
public boolean remove(Object o)
remove
in interface Collection
remove
in interface List
public boolean removeAll(Collection c)
removeAll
in interface Collection
removeAll
in interface List
public boolean retainAll(Collection c)
retainAll
in interface Collection
retainAll
in interface List
public Object set(int index, Object element)
set
in interface List
public int size()
size
in interface Collection
size
in interface List
public List subList(int fromIndex, int toIndex)
subList
in interface List
public Object[] toArray()
toArray
in interface Collection
toArray
in interface List
public Object[] toArray(Object[] a)
toArray
in interface Collection
toArray
in interface List
public Object __tojava__(Class c)
PyObject
Py.NoConversion
if this PyObject
can not be converted to the
desired Java class.
__tojava__
in class PySequence
c
- the Class to convert this PyObject
to.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |