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

Method get

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

Returns the element at the specified position in this list. @param index index of element to return. @return the element at the specified position in this list. @exception IndexOutOfBoundsException if the index is out of range (index < 0 || index >= size()).

(final int index)

Source from the content-addressed store, hash-verified

340 */
341
342 public int get(final int index)
343 {
344 if (index >= _limit)
345 {
346 throw new IndexOutOfBoundsException();
347 }
348 return _array[ index ];
349 }
350
351 /**
352 * Returns the hash code value for this list. The hash code of a

Callers 15

displayBATReaderMethod · 0.95
testAddMethod · 0.95
testAddAllMethod · 0.95
testClearMethod · 0.95
testGetMethod · 0.95
testSetMethod · 0.95
testToArrayMethod · 0.95
readMethod · 0.45
processShapeMethod · 0.45
getInstanceMethod · 0.45
getCellsMethod · 0.45

Calls

no outgoing calls

Tested by 15

testAddMethod · 0.76
testAddAllMethod · 0.76
testClearMethod · 0.76
testGetMethod · 0.76
testSetMethod · 0.76
testToArrayMethod · 0.76
testMethod · 0.36
traverseMethod · 0.36
assertReadWriteMethod · 0.36
testReadMethod · 0.36
testNewMethod · 0.36