CodeInputpublic interface CodeInput implements CodeCursorInput stream of code units, for reading in Dalvik bytecode. |
Methods Summary |
---|
public boolean | hasMore()Returns whether there are any more code units to read. This
is analogous to {@code hasNext()} on an interator.
| public int | read()Reads a code unit.
| public int | readInt()Reads two code units, treating them as a little-endian {@code int}.
| public long | readLong()Reads four code units, treating them as a little-endian {@code long}.
|
|