Java Doc for PyArray.java in  » Testing » Marathon » org » python » core » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Testing » Marathon » org.python.core 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.python.core.PyObject
      org.python.core.PySequence
         org.python.core.PyArray

All known Subclasses:   org.python.core.PyArrayDerived,
PyArray
public class PyArray extends PySequence implements Cloneable(Code)
A wrapper class around native java arrays. Instances of PyArray are created either by java functions or directly by the jarray module.

See also the jarray module.



Field Summary
final public static  Classexposed_base
    
final public static  Stringexposed_name
    

Constructor Summary
public  PyArray(PyType type)
    
public  PyArray(PyArray toCopy)
    
public  PyArray(Class type, Object data)
    
public  PyArray(Class type, int n)
    

Method Summary
public  PyObject__add__(PyObject other)
    
public  PyObject__findattr__(String name)
     Finds the attribute.
public  int__len__()
    
public  PyString__repr__()
    
public  Object__tojava__(Class c)
    
public  voidappend(PyObject value)
     Append new value x to the end of the array.
public static  PyArrayarray(PyObject seq, char typecode)
    
public static  PyArrayarray(PyObject init, Class ctype)
     Create a PyArray storing ctype types and being initialised with initialiser.
Parameters:
  init - an initialiser for the array - can be PyString or PySequence(including PyArray) or iterable type.
Parameters:
  ctype - Class type of the elements stored in the array.
public  voidarray_append(PyObject value)
    
public  voidarray_byteswap()
    
public  intarray_count(PyObject value)
    
public  voidarray_extend(PyObject iterable)
    
public  voidarray_fromlist(PyObject obj)
    
public  intarray_index(PyObject value)
    
public  voidarray_insert(int index, PyObject value)
    
public  PyObjectarray_pop()
    
public  PyObjectarray_pop(int i)
    
public  voidarray_remove(PyObject value)
    
public  voidarray_reverse()
    
public  voidarray_tofile(PyObject f)
    
public  PyObjectarray_tolist()
    
public  PyObjectarray_tostring()
    
public  voidarray_write(PyObject f)
    
public  voidbyteswap()
     "Byteswap" all items of the array.
public static  Classchar2class(char type)
     Converts a character code for the array type to a Java Class.
public  Objectclone()
     Implementation of Cloneable interface.
public  PyIntegercount(PyObject value)
     Return the number of occurrences of x in the array.
protected  voiddel(int i)
    
protected  voiddelRange(int start, int stop, int step)
     Delete the slice defined by start, stop and step from the array.
public  voidextend(PyObject iterable)
     Append items from iterable to the end of the array.
public  voidfromfile(PyObject f, int count)
     Read count items (as machine values) from the file object f and append them to the end of the array.
public  voidfromlist(PyObject obj)
     Append items from the list.
public  voidfromstring(String input)
     Appends items from the string, interpreting the string as an array of machine values (as if it had been read from a file using the PyArray.fromfile(PyObject,int) fromfile() method).
public  ObjectgetArray()
    
public  intgetItemsize()
     Getter for the storage size of the array's type.

The sizes returned by this method represent the number of bytes used to store the type.

public  StringgetTypecode()
     Getter for the type code of the array.
protected  PyObjectgetslice(int start, int stop, int step)
     Retrieve a slice from the array specified by the start, stop and step.
public  PyObjectindex(PyObject value)
     Return the smallest i such that i is the index of the first occurrence of value in the array.
public  voidinsert(int index, PyObject value)
     Insert a new item with value value in the array before position index.
public  PyObjectpop()
     Removes the item with the index index from the array and returns it.
public  PyObjectpop(int index)
     Removes the item with the index index from the array and returns it.
protected  PyObjectpyget(int i)
    
public  voidremove(PyObject value)
     Remove the first occurrence of value from the array.
protected  PyObjectrepeat(int count)
     Repeat the array count times.
public  voidreverse()
    
protected  voidset(int i, PyObject value)
     Set an element in the array - the index needs to exist, this method does not automatically extend the array.
protected  voidsetslice(int start, int stop, int step, PyObject value)
     Sets a slice of the array.
public  voidtofile(PyObject f)
     Write all items (as machine values) to the file object f.
public  PyObjecttolist()
     Convert the array to an ordinary list with the same items.
public  Stringtostring()
    
public static  voidtypeSetup(PyObject dict, PyType.Newstyle marker)
    
public static  PyArrayzeros(int n, char typecode)
    
public static  PyArrayzeros(int n, Class ctype)
    

Field Detail
exposed_base
final public static Class exposed_base(Code)



exposed_name
final public static String exposed_name(Code)




Constructor Detail
PyArray
public PyArray(PyType type)(Code)



PyArray
public PyArray(PyArray toCopy)(Code)



PyArray
public PyArray(Class type, Object data)(Code)



PyArray
public PyArray(Class type, int n)(Code)




Method Detail
__add__
public PyObject __add__(PyObject other)(Code)
Adds (appends) two PyArrays together
Parameters:
  other - a PyArray to be added to the instance the result of the addition as a new PyArray instance



__findattr__
public PyObject __findattr__(String name)(Code)
Finds the attribute.
Parameters:
  name - the name of the attribute of interest the value for the attribute of the specified name



__len__
public int __len__()(Code)
Length of the array number of elements in the array



__repr__
public PyString __repr__()(Code)
String representation of PyArray string representation of PyArray



__tojava__
public Object __tojava__(Class c)(Code)

Parameters:
  c - target Class for the conversion Java object converted to required class type if possible.



append
public void append(PyObject value)(Code)
Append new value x to the end of the array.
Parameters:
  value - item to be appended to the array



array
public static PyArray array(PyObject seq, char typecode)(Code)



array
public static PyArray array(PyObject init, Class ctype)(Code)
Create a PyArray storing ctype types and being initialised with initialiser.
Parameters:
  init - an initialiser for the array - can be PyString or PySequence(including PyArray) or iterable type.
Parameters:
  ctype - Class type of the elements stored in the array. a new PyArray



array_append
public void array_append(PyObject value)(Code)



array_byteswap
public void array_byteswap()(Code)



array_count
public int array_count(PyObject value)(Code)



array_extend
public void array_extend(PyObject iterable)(Code)



array_fromlist
public void array_fromlist(PyObject obj)(Code)



array_index
public int array_index(PyObject value)(Code)



array_insert
public void array_insert(int index, PyObject value)(Code)



array_pop
public PyObject array_pop()(Code)



array_pop
public PyObject array_pop(int i)(Code)



array_remove
public void array_remove(PyObject value)(Code)



array_reverse
public void array_reverse()(Code)



array_tofile
public void array_tofile(PyObject f)(Code)



array_tolist
public PyObject array_tolist()(Code)



array_tostring
public PyObject array_tostring()(Code)



array_write
public void array_write(PyObject f)(Code)



byteswap
public void byteswap()(Code)
"Byteswap" all items of the array. This is only supported for values which are 1, 2, 4, or 8 bytes in size; for other types of values, RuntimeError is raised. It is useful when reading data from a file written on a machine with a different byte order.



char2class
public static Class char2class(char type) throws PyIgnoreMethodTag(Code)
Converts a character code for the array type to a Java Class.

The following character codes and their native types are supported:
Type code native type
z boolean
c char
b byte
h short
i int
l long
f float
d double


Parameters:
  type - character code for the array type Class of the native type




clone
public Object clone()(Code)
Implementation of Cloneable interface. copy of current PyArray



count
public PyInteger count(PyObject value)(Code)
Return the number of occurrences of x in the array.
Parameters:
  value - instances of the value to be counted number of time value was found in the array.



del
protected void del(int i)(Code)
Delete the element at position i from the array
Parameters:
  i - index of the item to be deleted from the array



delRange
protected void delRange(int start, int stop, int step)(Code)
Delete the slice defined by start, stop and step from the array.
Parameters:
  start - starting index of slice
Parameters:
  stop - finishing index of slice
Parameters:
  step - stepping increment between start and stop



extend
public void extend(PyObject iterable)(Code)
Append items from iterable to the end of the array. If iterable is another array, it must have exactly the same type code; if not, TypeError will be raised. If iterable is not an array, it must be iterable and its elements must be the right type to be appended to the array. Changed in version 2.4: Formerly, the argument could only be another array.
Parameters:
  iterable - iterable object used to extend the array



fromfile
public void fromfile(PyObject f, int count)(Code)
Read count items (as machine values) from the file object f and append them to the end of the array. If less than count items are available, EOFError is raised, but the items that were available are still inserted into the array. f must be a real built-in file object; something else with a read() method won't do.
Parameters:
  f - Python builtin file object to retrieve data
Parameters:
  count - number of array elements to read



fromlist
public void fromlist(PyObject obj)(Code)
Append items from the list. This is equivalent to "for x in list: a.append(x)"except that if there is a type error, the array is unchanged.
Parameters:
  obj - input list object that will be appended to the array



fromstring
public void fromstring(String input)(Code)
Appends items from the string, interpreting the string as an array of machine values (as if it had been read from a file using the PyArray.fromfile(PyObject,int) fromfile() method).
Parameters:
  input - string of bytes containing array data



getArray
public Object getArray() throws PyIgnoreMethodTag(Code)
Return the internal Java array storage of the PyArray instance the Array store.



getItemsize
public int getItemsize()(Code)
Getter for the storage size of the array's type.

The sizes returned by this method represent the number of bytes used to store the type. In the case of streams, this is the number of bytes written to, or read from a stream. For memory this value is the minimum number of bytes required to store the type.

This method is used by other methods to define read/write quanta from strings and streams.

Values returned are:
Type Size
boolean 1
byte 1
char 1
short 2
int 4
long 8
float 4
double 8
number of bytes used to store array type.




getTypecode
public String getTypecode() throws PyIgnoreMethodTag(Code)
Getter for the type code of the array. PyArray.char2class(char) char2class describes the possible type codes and their meaning. single character type code for the array



getslice
protected PyObject getslice(int start, int stop, int step)(Code)
Retrieve a slice from the array specified by the start, stop and step.
Parameters:
  start - start index of the slice
Parameters:
  stop - stop index of the slice
Parameters:
  step - stepping increment of the slice A new PyArray object containing the described slice



index
public PyObject index(PyObject value)(Code)
Return the smallest i such that i is the index of the first occurrence of value in the array.
Parameters:
  value - value to find the index of index of the first occurance of value



insert
public void insert(int index, PyObject value)(Code)
Insert a new item with value value in the array before position index. Negative values are treated as being relative to the end of the array.
Parameters:
  index - insert position
Parameters:
  value - value to be inserted into array



pop
public PyObject pop()(Code)
Removes the item with the index index from the array and returns it. The optional argument defaults to -1, so that by default the last item is removed and returned.



pop
public PyObject pop(int index)(Code)
Removes the item with the index index from the array and returns it. The optional argument defaults to -1, so that by default the last item is removed and returned.
Parameters:
  index - array location to be popped from the array array element popped from index



pyget
protected PyObject pyget(int i)(Code)
Get the element at position i from the array
Parameters:
  i - index of the item to be retrieved from the array



remove
public void remove(PyObject value)(Code)
Remove the first occurrence of value from the array.
Parameters:
  value - array value to be removed



repeat
protected PyObject repeat(int count)(Code)
Repeat the array count times.
Parameters:
  count - number of times to repeat the array A new PyArray object containing the source object repeatedcount times.



reverse
public void reverse()(Code)
Reverse the elements in the array



set
protected void set(int i, PyObject value)(Code)
Set an element in the array - the index needs to exist, this method does not automatically extend the array. See AbstractArray.setSize(int) AbstractArray.setSize() or AbstractArray.ensureCapacity(int) AbstractArray.ensureCapacity() for ways to extend capacity.

This code specifically checks for overflows of the integral types: byte, short, int and long.
Parameters:
  i - index of the element to be set
Parameters:
  value - value to set the element to




setslice
protected void setslice(int start, int stop, int step, PyObject value)(Code)
Sets a slice of the array. value can be a string (for byte and char types) or PyArray. If a PyArray, its type must be convertible into the type of the target PyArray.
Parameters:
  start - start index of the delete slice
Parameters:
  stop - end index of the delete slice
Parameters:
  step - stepping increment of the slice



tofile
public void tofile(PyObject f)(Code)
Write all items (as machine values) to the file object f.
Parameters:
  f - Python builtin file object to write data



tolist
public PyObject tolist()(Code)
Convert the array to an ordinary list with the same items. array contents as a list



tostring
public String tostring()(Code)
Convert the array to an array of machine values and return the string representation (the same sequence of bytes that would be written to a file by the PyArray.tofile(PyObject) tofile() method.)



typeSetup
public static void typeSetup(PyObject dict, PyType.Newstyle marker)(Code)



zeros
public static PyArray zeros(int n, char typecode)(Code)



zeros
public static PyArray zeros(int n, Class ctype)(Code)



Methods inherited from org.python.core.PySequence
public synchronized void __delitem__(PyObject index)(Code)(Java Doc)
public synchronized void __delslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
public synchronized PyObject __eq__(PyObject o)(Code)(Java Doc)
public synchronized PyObject __finditem__(int index)(Code)(Java Doc)
public PyObject __finditem__(PyObject index)(Code)(Java Doc)
public synchronized PyObject __ge__(PyObject o)(Code)(Java Doc)
public PyObject __getitem__(PyObject index)(Code)(Java Doc)
public synchronized PyObject __getslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
public synchronized PyObject __gt__(PyObject o)(Code)(Java Doc)
public PyObject __iter__()(Code)(Java Doc)
public synchronized PyObject __le__(PyObject o)(Code)(Java Doc)
public synchronized PyObject __lt__(PyObject o)(Code)(Java Doc)
public synchronized PyObject __ne__(PyObject o)(Code)(Java Doc)
public boolean __nonzero__()(Code)(Java Doc)
public synchronized void __setitem__(int index, PyObject value)(Code)(Java Doc)
public void __setitem__(PyObject index, PyObject value)(Code)(Java Doc)
public synchronized void __setslice__(PyObject s_start, PyObject s_stop, PyObject s_step, PyObject value)(Code)(Java Doc)
public synchronized Object __tojava__(Class c) throws PyIgnoreMethodTag(Code)(Java Doc)
protected static int cmp(PyObject o1, int ol1, PyObject o2, int ol2)(Code)(Java Doc)
protected void del(int i) throws PyException(Code)(Java Doc)
protected void delRange(int start, int stop, int step)(Code)(Java Doc)
protected static PyObject fastSequence(PyObject seq, String msg)(Code)(Java Doc)
protected int fixindex(int index)(Code)(Java Doc)
final protected static int getStart(PyObject s_start, int step, int length)(Code)(Java Doc)
final protected static int getStep(PyObject s_step)(Code)(Java Doc)
final protected static int getStop(PyObject s_stop, int start, int step, int length)(Code)(Java Doc)
abstract protected PyObject getslice(int start, int stop, int step)(Code)(Java Doc)
public boolean isMappingType() throws PyIgnoreMethodTag(Code)(Java Doc)
public boolean isNumberType() throws PyIgnoreMethodTag(Code)(Java Doc)
abstract protected PyObject pyget(int index)(Code)(Java Doc)
abstract protected PyObject repeat(int count)(Code)(Java Doc)
final synchronized void seq___delitem__(PyObject index)(Code)(Java Doc)
final synchronized void seq___delslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
final synchronized PyObject seq___eq__(PyObject o)(Code)(Java Doc)
final PyObject seq___finditem__(PyObject index)(Code)(Java Doc)
final synchronized PyObject seq___ge__(PyObject o)(Code)(Java Doc)
final PyObject seq___getitem__(PyObject index)(Code)(Java Doc)
final synchronized PyObject seq___getslice__(PyObject s_start, PyObject s_stop)(Code)(Java Doc)
final synchronized PyObject seq___getslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
final synchronized PyObject seq___gt__(PyObject o)(Code)(Java Doc)
final PyObject seq___iter__()(Code)(Java Doc)
final synchronized PyObject seq___le__(PyObject o)(Code)(Java Doc)
final synchronized PyObject seq___lt__(PyObject o)(Code)(Java Doc)
final synchronized PyObject seq___ne__(PyObject o)(Code)(Java Doc)
final boolean seq___nonzero__()(Code)(Java Doc)
final void seq___setitem__(PyObject index, PyObject value)(Code)(Java Doc)
final synchronized void seq___setslice__(PyObject s_start, PyObject s_stop, PyObject value)(Code)(Java Doc)
final synchronized void seq___setslice__(PyObject s_start, PyObject s_stop, PyObject s_step, PyObject value)(Code)(Java Doc)
protected void set(int index, PyObject value)(Code)(Java Doc)
protected void setslice(int start, int stop, int step, PyObject value)(Code)(Java Doc)
final protected static int sliceLength(int start, int stop, int step)(Code)(Java Doc)

Fields inherited from org.python.core.PyObject
final public static String exposed_name(Code)(Java Doc)

Methods inherited from org.python.core.PyObject
public PyObject __abs__()(Code)(Java Doc)
public PyObject __add__(PyObject other)(Code)(Java Doc)
public PyObject __and__(PyObject other)(Code)(Java Doc)
public PyObject __call__(PyObject args, String keywords)(Code)(Java Doc)
public PyObject __call__(PyObject arg1, PyObject args, String keywords)(Code)(Java Doc)
public PyObject __call__(PyObject args)(Code)(Java Doc)
public PyObject __call__()(Code)(Java Doc)
public PyObject __call__(PyObject arg0)(Code)(Java Doc)
public PyObject __call__(PyObject arg0, PyObject arg1)(Code)(Java Doc)
public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2)(Code)(Java Doc)
public PyObject __call__(PyObject arg0, PyObject arg1, PyObject arg2, PyObject arg3)(Code)(Java Doc)
public int __cmp__(PyObject other)(Code)(Java Doc)
final public PyObject __coerce__(PyObject pyo)(Code)(Java Doc)
public Object __coerce_ex__(PyObject o)(Code)(Java Doc)
public PyComplex __complex__()(Code)(Java Doc)
public boolean __contains__(PyObject o)(Code)(Java Doc)
final public void __delattr__(PyString name)(Code)(Java Doc)
public void __delattr__(String name)(Code)(Java Doc)
public void __delete__(PyObject obj)(Code)(Java Doc)
public void __delitem__(PyObject key)(Code)(Java Doc)
public void __delitem__(String key)(Code)(Java Doc)
public void __delslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
public void __delslice__(PyObject start, PyObject stop)(Code)(Java Doc)
public PyObject __dir__()(Code)(Java Doc)
public PyObject __div__(PyObject other)(Code)(Java Doc)
public PyObject __divmod__(PyObject other)(Code)(Java Doc)
public PyObject __eq__(PyObject other)(Code)(Java Doc)
final public PyObject __findattr__(PyString name)(Code)(Java Doc)
public PyObject __findattr__(String name)(Code)(Java Doc)
public PyObject __finditem__(PyObject key)(Code)(Java Doc)
public PyObject __finditem__(int key)(Code)(Java Doc)
public PyObject __finditem__(String key)(Code)(Java Doc)
public PyFloat __float__()(Code)(Java Doc)
public PyObject __floordiv__(PyObject other)(Code)(Java Doc)
public PyObject __ge__(PyObject other)(Code)(Java Doc)
public PyObject __get__(PyObject obj, PyObject type)(Code)(Java Doc)
final public PyObject __getattr__(PyString name)(Code)(Java Doc)
final public PyObject __getattr__(String name)(Code)(Java Doc)
public PyObject __getitem__(int key)(Code)(Java Doc)
public PyObject __getitem__(PyObject key)(Code)(Java Doc)
public PyTuple __getnewargs__()(Code)(Java Doc)
public PyObject __getslice__(PyObject s_start, PyObject s_stop, PyObject s_step)(Code)(Java Doc)
public PyObject __getslice__(PyObject start, PyObject stop)(Code)(Java Doc)
public PyObject __gt__(PyObject other)(Code)(Java Doc)
final public PyInteger __hash__()(Code)(Java Doc)
public PyString __hex__()(Code)(Java Doc)
public PyObject __iadd__(PyObject other)(Code)(Java Doc)
public PyObject __iand__(PyObject other)(Code)(Java Doc)
public PyObject __idiv__(PyObject other)(Code)(Java Doc)
public PyObject __idivmod__(PyObject other)(Code)(Java Doc)
public PyObject __ifloordiv__(PyObject other)(Code)(Java Doc)
public PyObject __ilshift__(PyObject other)(Code)(Java Doc)
public PyObject __imod__(PyObject other)(Code)(Java Doc)
public PyObject __imul__(PyObject other)(Code)(Java Doc)
public PyObject __int__()(Code)(Java Doc)
public PyObject __invert__()(Code)(Java Doc)
public PyObject __ior__(PyObject other)(Code)(Java Doc)
public PyObject __ipow__(PyObject other)(Code)(Java Doc)
public PyObject __irshift__(PyObject other)(Code)(Java Doc)
public PyObject __isub__(PyObject other)(Code)(Java Doc)
public PyObject __iter__()(Code)(Java Doc)
public PyObject __iternext__()(Code)(Java Doc)
public PyObject __itruediv__(PyObject other)(Code)(Java Doc)
public PyObject __ixor__(PyObject other)(Code)(Java Doc)
public PyObject __le__(PyObject other)(Code)(Java Doc)
public int __len__()(Code)(Java Doc)
public PyLong __long__()(Code)(Java Doc)
public PyObject __lshift__(PyObject other)(Code)(Java Doc)
public PyObject __lt__(PyObject other)(Code)(Java Doc)
public PyObject __mod__(PyObject other)(Code)(Java Doc)
public PyObject __mul__(PyObject other)(Code)(Java Doc)
public PyObject __ne__(PyObject other)(Code)(Java Doc)
public PyObject __neg__()(Code)(Java Doc)
public boolean __nonzero__()(Code)(Java Doc)
public PyObject __not__()(Code)(Java Doc)
public PyString __oct__()(Code)(Java Doc)
public PyObject __or__(PyObject other)(Code)(Java Doc)
public PyObject __pos__()(Code)(Java Doc)
public PyObject __pow__(PyObject o2, PyObject o3)(Code)(Java Doc)
public PyObject __pow__(PyObject other)(Code)(Java Doc)
public PyObject __radd__(PyObject other)(Code)(Java Doc)
public PyObject __rand__(PyObject other)(Code)(Java Doc)
protected void __rawdir__(PyDictionary accum)(Code)(Java Doc)
public PyObject __rdiv__(PyObject other)(Code)(Java Doc)
public PyObject __rdivmod__(PyObject other)(Code)(Java Doc)
public PyObject __reduce__()(Code)(Java Doc)
public PyString __repr__()(Code)(Java Doc)
public PyObject __rfloordiv__(PyObject other)(Code)(Java Doc)
public PyObject __rlshift__(PyObject other)(Code)(Java Doc)
public PyObject __rmod__(PyObject other)(Code)(Java Doc)
public PyObject __rmul__(PyObject other)(Code)(Java Doc)
public PyObject __ror__(PyObject other)(Code)(Java Doc)
public PyObject __rpow__(PyObject other)(Code)(Java Doc)
public PyObject __rrshift__(PyObject other)(Code)(Java Doc)
public PyObject __rshift__(PyObject other)(Code)(Java Doc)
public PyObject __rsub__(PyObject other)(Code)(Java Doc)
public PyObject __rtruediv__(PyObject other)(Code)(Java Doc)
public PyObject __rxor__(PyObject other)(Code)(Java Doc)
public void __set__(PyObject obj, PyObject value)(Code)(Java Doc)
final public void __setattr__(PyString name, PyObject value)(Code)(Java Doc)
public void __setattr__(String name, PyObject value)(Code)(Java Doc)
public void __setitem__(PyObject key, PyObject value)(Code)(Java Doc)
public void __setitem__(String key, PyObject value)(Code)(Java Doc)
public void __setitem__(int key, PyObject value)(Code)(Java Doc)
public void __setslice__(PyObject s_start, PyObject s_stop, PyObject s_step, PyObject value)(Code)(Java Doc)
public void __setslice__(PyObject start, PyObject stop, PyObject value)(Code)(Java Doc)
public PyString __str__()(Code)(Java Doc)
public PyObject __sub__(PyObject other)(Code)(Java Doc)
public Object __tojava__(Class c)(Code)(Java Doc)
public PyObject __truediv__(PyObject other)(Code)(Java Doc)
public PyUnicode __unicode__()(Code)(Java Doc)
public PyObject __xor__(PyObject other)(Code)(Java Doc)
final public PyObject _add(PyObject o2)(Code)(Java Doc)
final public PyObject _and(PyObject o2)(Code)(Java Doc)
final PyObject _basic_add(PyObject o2)(Code)(Java Doc)
final PyObject _basic_and(PyObject o2)(Code)(Java Doc)
final PyObject _basic_div(PyObject o2)(Code)(Java Doc)
final PyObject _basic_divmod(PyObject o2)(Code)(Java Doc)
final PyObject _basic_floordiv(PyObject o2)(Code)(Java Doc)
final PyObject _basic_lshift(PyObject o2)(Code)(Java Doc)
final PyObject _basic_mod(PyObject o2)(Code)(Java Doc)
final PyObject _basic_mul(PyObject o2)(Code)(Java Doc)
final PyObject _basic_or(PyObject o2)(Code)(Java Doc)
final PyObject _basic_pow(PyObject o2)(Code)(Java Doc)
final PyObject _basic_rshift(PyObject o2)(Code)(Java Doc)
final PyObject _basic_sub(PyObject o2)(Code)(Java Doc)
final PyObject _basic_truediv(PyObject o2)(Code)(Java Doc)
final PyObject _basic_xor(PyObject o2)(Code)(Java Doc)
public PyObject _callextra(PyObject[] args, String[] keywords, PyObject starargs, PyObject kwargs)(Code)(Java Doc)
final public int _cmp(PyObject o)(Code)(Java Doc)
PyObject[] _coerce(PyObject other)(Code)(Java Doc)
final public PyObject _div(PyObject o2)(Code)(Java Doc)
final public PyObject _divmod(PyObject o2)(Code)(Java Doc)
public PyObject _doget(PyObject container)(Code)(Java Doc)
public PyObject _doget(PyObject container, PyObject wherefound)(Code)(Java Doc)
public boolean _doset(PyObject container, PyObject value)(Code)(Java Doc)
final public PyObject _eq(PyObject o)(Code)(Java Doc)
final public PyObject _floordiv(PyObject o2)(Code)(Java Doc)
final public PyObject _ge(PyObject o)(Code)(Java Doc)
final public PyObject _gt(PyObject o)(Code)(Java Doc)
final public PyObject _in(PyObject o)(Code)(Java Doc)
public PyObject _is(PyObject o)(Code)(Java Doc)
public PyObject _isnot(PyObject o)(Code)(Java Doc)
public PyObject _jcall(Object[] args)(Code)(Java Doc)
public PyObject _jcallexc(Object[] args) throws Throwable(Code)(Java Doc)
public void _jthrow(Throwable t)(Code)(Java Doc)
final public PyObject _le(PyObject o)(Code)(Java Doc)
final public PyObject _lshift(PyObject o2)(Code)(Java Doc)
final public PyObject _lt(PyObject o)(Code)(Java Doc)
final public PyObject _mod(PyObject o2)(Code)(Java Doc)
final public PyObject _mul(PyObject o2)(Code)(Java Doc)
final public PyObject _ne(PyObject o)(Code)(Java Doc)
final public PyObject _notin(PyObject o)(Code)(Java Doc)
final public PyObject _or(PyObject o2)(Code)(Java Doc)
final public PyObject _pow(PyObject o2)(Code)(Java Doc)
final public PyObject _rshift(PyObject o2)(Code)(Java Doc)
final public PyObject _sub(PyObject o2)(Code)(Java Doc)
final public PyObject _truediv(PyObject o2)(Code)(Java Doc)
final protected String _unsupportedop(String op, PyObject o2)(Code)(Java Doc)
final public PyObject _xor(PyObject o2)(Code)(Java Doc)
protected void addKeys(PyDictionary accum, String attr)(Code)(Java Doc)
public int asInt(int index) throws ConversionException(Code)(Java Doc)
public long asLong(int index) throws ConversionException(Code)(Java Doc)
public String asName(int index) throws ConversionException(Code)(Java Doc)
public String asString(int index) throws ConversionException(Code)(Java Doc)
public String asStringOrNull(int index) throws ConversionException(Code)(Java Doc)
public void delDict()(Code)(Java Doc)
public void delType()(Code)(Java Doc)
public void dispatch__init__(PyType type, PyObject[] args, String[] keywords)(Code)(Java Doc)
public boolean equals(Object ob_other)(Code)(Java Doc)
public PyObject fastGetClass()(Code)(Java Doc)
public PyObject fastGetDict()(Code)(Java Doc)
public PyObject getDict()(Code)(Java Doc)
public PyObject getDoc()(Code)(Java Doc)
public PyType getType()(Code)(Java Doc)
public int hashCode()(Code)(Java Doc)
protected PyObject impAttr(String name)(Code)(Java Doc)
public boolean implementsDescrDelete()(Code)(Java Doc)
public boolean implementsDescrSet()(Code)(Java Doc)
public PyObject invoke(String name, PyObject[] args, String[] keywords)(Code)(Java Doc)
public PyObject invoke(String name, PyObject[] args)(Code)(Java Doc)
public PyObject invoke(String name)(Code)(Java Doc)
public PyObject invoke(String name, PyObject arg1)(Code)(Java Doc)
public PyObject invoke(String name, PyObject arg1, PyObject arg2)(Code)(Java Doc)
public boolean isCallable()(Code)(Java Doc)
public boolean isDataDescr()(Code)(Java Doc)
public boolean isMappingType()(Code)(Java Doc)
public boolean isNumberType()(Code)(Java Doc)
public boolean isSequenceType()(Code)(Java Doc)
boolean jdontdel()(Code)(Java Doc)
boolean jtryset(PyObject container, PyObject value)(Code)(Java Doc)
public void noAttributeError(String name)(Code)(Java Doc)
final boolean object___contains__(PyObject o)(Code)(Java Doc)
final void object___delattr__(String name)(Code)(Java Doc)
final PyObject object___findattr__(String name)(Code)(Java Doc)
final PyObject object___reduce__()(Code)(Java Doc)
final void object___setattr__(String name, PyObject value)(Code)(Java Doc)
final int object_hashCode()(Code)(Java Doc)
final void object_init(PyObject[] args, String[] keywords)(Code)(Java Doc)
final String object_toString()(Code)(Java Doc)
public void readonlyAttributeError(String name)(Code)(Java Doc)
protected String runsupportedopMessage(String op, PyObject o2)(Code)(Java Doc)
public String safeRepr() throws PyIgnoreMethodTag(Code)(Java Doc)
public void setDict(PyObject newDict)(Code)(Java Doc)
public void setType(PyType type)(Code)(Java Doc)
public String toString()(Code)(Java Doc)
public static void typeSetup(PyObject dict, PyType.Newstyle marker)(Code)(Java Doc)
protected String unsupportedopMessage(String op, PyObject o2)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.