Bases: TASSELpy.javaObj.javaObj
Base class for all java object wrappers that you want to accept angle bracket arguments
Methods
getArray(size) | Gets an empty wrapped java array that can accept the type of the wrapped |
getDblArray(rows[, cols]) | Gets an empty wrapped java array that can accept the type of other wrapped java arrays: i.e. |
wrap_existing_array(arr_instance) | Wraps a java array of this class’s type |
Bases: TASSELpy.javaObj.javaObj
Base class for arrays of wrapped objects
Methods
getArray(size) | Gets an empty wrapped java array that can accept the type of the wrapped |
getDblArray(rows[, cols]) | Gets an empty wrapped java array that can accept the type of other wrapped java arrays: i.e. |
get_array_type(Class) | |
make_array(Class_instance, length[, pyType]) | Makes a wrapped java array for some java class |
to_numpy_array() | Makes a numpy array copy of the Java primative array |
to_wrapped_array(arr_instance, pyType[, setter]) | Wraps a current array |
wrap_existing_array(arr_instance) | Wraps a java array of this class’s type |
Makes a wrapped java array for some java class
Arguments:
Returns:
The wrapped java array
Bases: object
Methods
getArray(size) | Gets an empty wrapped java array that can accept the type of the wrapped |
getDblArray(rows[, cols]) | Gets an empty wrapped java array that can accept the type of other wrapped java arrays: i.e. |
wrap_existing_array(arr_instance) | Wraps a java array of this class’s type |
Gets an empty wrapped java array that can accept the type of the wrapped java object
Arguments:
size – the size of the array
Returns:
An instance of the array of the given size
Gets an empty wrapped java array that can accept the type of other wrapped java arrays: i.e. Object[][]
Arguments:
rows – The number of rows that should be in the array (the first dimension) cols – The number of columns that should be in the array (if not specified, the
array objects will not be instantiated at these locations
Returns:
An instance of an array of arrays