|
|||||||||
| 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, 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 PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __mul__(PyObject o)
PyObject
__mul__ in class PyObjecto - the object to perform this binary operation with
(the right-hand operand).
public PyObject __rmul__(PyObject o)
PyObject
__rmul__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public PyObject __iadd__(PyObject other)
PyObject
__iadd__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).
public PyObject __add__(PyObject other)
PyObject
__add__ in class PyObjectother - the object to perform this binary operation with
(the right-hand operand).
public PyObject __radd__(PyObject o)
PyObject
__radd__ in class PyObjecto - the object to perform this binary operation with
(the left-hand operand).
public int __len__()
PyObject
__len__ in class PyObjectpublic String toString()
toString in class PyObjectpublic void append(PyObject o)
public Object clone()
clone in class Objectpublic 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 Listpublic boolean add(Object o)
add in interface Collectionadd in interface List
public boolean addAll(int index,
Collection c)
addAll in interface Listpublic boolean addAll(Collection c)
addAll in interface CollectionaddAll in interface Listpublic void clear()
clear in interface Collectionclear in interface Listpublic boolean contains(Object o)
contains in interface Collectioncontains in interface Listpublic boolean containsAll(Collection c)
containsAll in interface CollectioncontainsAll in interface Listpublic Object get(int index)
get in interface Listpublic int indexOf(Object o)
indexOf in interface Listpublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Listpublic Iterator iterator()
iterator in interface Iterableiterator in interface Collectioniterator in interface Listpublic int lastIndexOf(Object o)
lastIndexOf in interface Listpublic ListIterator listIterator()
listIterator in interface Listpublic ListIterator listIterator(int index)
listIterator in interface Listpublic 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 Listpublic boolean remove(Object o)
remove in interface Collectionremove in interface Listpublic boolean removeAll(Collection c)
removeAll in interface CollectionremoveAll in interface Listpublic boolean retainAll(Collection c)
retainAll in interface CollectionretainAll in interface List
public Object set(int index,
Object element)
set in interface Listpublic int size()
size in interface Collectionsize in interface List
public List subList(int fromIndex,
int toIndex)
subList in interface Listpublic Object[] toArray()
toArray in interface CollectiontoArray in interface Listpublic Object[] toArray(Object[] a)
toArray in interface CollectiontoArray in interface Listpublic Object __tojava__(Class c)
PyObjectPy.NoConversion
if this PyObject can not be converted to the
desired Java class.
__tojava__ in class PySequencec - the Class to convert this PyObject to.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||