- levels
- the level array, which is already determined.
- levelStart
- the start offset of the range of the levels.
- objects
- the object array to reorder.
- objectStart
- the start offset of the range of objects.
- count
- the count of the range of objects to reorder.
Type Reason Java.Lang.IllegalArgumentException if count, levelStart or objectStart is negative; if count > levels.length - levelStart or if count > objects.length - objectStart.
Reorders a range of objects according to their specified levels. This is a convenience function that does not use a Bidi object. The range of objects at index from objectStart to objectStart + count will be reordered according to the range of levels at index from levelStart to levelStart + count.