- original
- the original array
- start
- the start index, inclusive
- end
- the end index, exclusive
Documentation for this section has not yet been entered.
Type Reason Java.Lang.ArrayIndexOutOfBoundsException if start original.length Java.Lang.IllegalArgumentException if start > end Java.Lang.NullPointerException if original == null
Copies elements from original into a new array, from indexes start (inclusive) to end (exclusive). The original order of elements is preserved. If end is greater than original.length, the result is padded with the value 0L.