open fun getInt(i: Int): Int
(source)
Retrieve the 4 bytes starting at the provided index in this value as an integer.
i
- The index from which to get the int, which must less than or equal to size() - 4
.
IndexOutOfBoundsException
- if i < 0
or i > size() - 4
.
Return
An integer whose value is the 4 bytes from this value starting at index i
.
open fun getInt(i: Int, order: ByteOrder): Int
(source)
Retrieve the 4 bytes starting at the provided index in this value as an integer.
i
- The index from which to get the int, which must less than or equal to size() - 4
.
order
- The byte-order for decoding the integer.
IndexOutOfBoundsException
- if i < 0
or i > size() - 4
.
Return
An integer whose value is the 4 bytes from this value starting at index i
.