Copies data from the array this JavaObject represents into an array.
The dst object must be an array of the appropriate type -- a primitive type array for base types, or a JavaObject array for reference arrays.
@param srcStart index in the receiver to start copying from. @param dst the destination array. @param dstStart index in the destination array to start copying into. @param length the number of elements to be copied. @throws CorruptDataException @throws MemoryAccessException @exception NullPointerException if dst is null. @exception IllegalArgumentException if the object is not an array,or if dst is not an array of the appropriate type. @exception IndexOutOfBoundsException if srcStart, dstStart, or lengthare out of bounds in either the JavaObject or the destination array.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|