MCPcopy Create free account
hub / github.com/apache/poi / toArray

Method toArray

src/java/org/apache/poi/util/IntList.java:610–616  ·  view source on GitHub ↗

Returns an array containing all of the elements in this list in proper sequence. Obeys the general contract of the Collection.toArray method. @return an array containing all of the elements in this list in proper sequence.

()

Source from the content-addressed store, hash-verified

608 */
609
610 public int [] toArray()
611 {
612 int[] rval = new int[ _limit ];
613
614 System.arraycopy(_array, 0, rval, 0, _limit);
615 return rval;
616 }
617
618 /**
619 * Returns an array containing all of the elements in this list in

Callers 15

testToArrayMethod · 0.95
applyFontMethod · 0.45
writeToMethod · 0.45
getCommonXpathMethod · 0.45
getPartsImplMethod · 0.45
getHyperlinksMethod · 0.45
getCommentsMethod · 0.45
getLastParagraphMethod · 0.45
testSlideBasicsMethod · 0.45
addClusterMethod · 0.45
RawDataBlockListMethod · 0.45

Calls 1

arraycopyMethod · 0.80

Tested by 15

testToArrayMethod · 0.76
testSlideBasicsMethod · 0.36
getRecordsMethod · 0.36
endTableGroupMethod · 0.36
endElementMethod · 0.36
toPrimitiveIntArrayMethod · 0.36
getRecordsMethod · 0.36
getRecordsMethod · 0.36
getFormulaRecordsMethod · 0.36
getRecordsMethod · 0.36
getAndClearLogMethod · 0.36