MCPcopy Create free account
hub / github.com/AstroImageJ/astroimagej / getByte

Method getByte

ij/src/main/java/ij/plugin/DICOM.java:348–354  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

346 }
347
348 int getByte() throws IOException {
349 int b = f.read();
350 if (b ==-1)
351 throw new IOException("unexpected EOF");
352 ++location;
353 return b;
354 }
355
356 int getShort() throws IOException {
357 int b0 = getByte();

Callers 9

getShortMethod · 0.95
getSShortMethod · 0.95
getIntMethod · 0.95
getUIntMethod · 0.95
getDoubleMethod · 0.95
getFloatMethod · 0.95
getLengthMethod · 0.95
getFileInfoMethod · 0.95
getHeaderInfoMethod · 0.95

Calls 1

readMethod · 0.65

Tested by

no test coverage detected