MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / readInt

Method readInt

vm/JavaAPI/src/java/io/DataInput.java:77–77  ·  view source on GitHub ↗

Reads four input bytes and returns an int value. Let a be the first byte read, b be the second byte, c be the third byte, and d be the fourth byte. The value returned is: (((a 0xff) 24) | ((b 0xff) 16) | ((c 0xff) 8) | (d 0xff)) This method is suitable for reading bytes written by the writeInt metho

()

Source from the content-addressed store, hash-verified

75 * (((a 0xff) 24) | ((b 0xff) 16) | ((c 0xff) 8) | (d 0xff)) This method is suitable for reading bytes written by the writeInt method of interface DataOutput.
76 */
77 public abstract int readInt() throws java.io.IOException;
78
79 /**
80 * Reads eight input bytes and returns a long value. Let a be the first byte read, b be the second byte, c be the third byte, d be the fourth byte, e be the fifth byte, f be the sixth byte, g be the seventh byte, and h be the eighth byte. The value returned is:

Callers 15

internalizeMethod · 0.65
readObjectMethod · 0.65
internalizeMethod · 0.65
readCommandMethod · 0.65
postCreateComponentsMethod · 0.65
readCommandsMethod · 0.65
createComponentMethod · 0.65
readTimelineMethod · 0.65
createImageMethod · 0.65
readMultiImageMethod · 0.65

Implementers 2

DataInputStreamPorts/CLDC11/src/java/io/DataInputStre
DataInputStreamvm/JavaAPI/src/java/io/DataInputStream

Calls

no outgoing calls

Tested by

no test coverage detected