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

Method toString

ij/src/main/java/ij/io/FileInfo.java:201–219  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

199 }
200
201 public String toString() {
202 return
203 "name=" + fileName
204 + ", dir=" + directory
205 + ", width=" + width
206 + ", height=" + height
207 + ", nImages=" + nImages
208 + ", offset=" + getOffset()
209 + ", gap=" + getGap()
210 + ", type=" + getType()
211 + ", byteOrder=" + (intelByteOrder?"little":"big")
212 + ", format=" + fileFormat
213 + ", url=" + url
214 + ", whiteIsZero=" + (whiteIsZero?"t":"f")
215 + ", lutSize=" + lutSize
216 + ", comp=" + compression
217 + ", ranges=" + (displayRanges!=null?""+displayRanges.length/2:"null")
218 + ", samples=" + samplesPerPixel;
219 }
220
221 /** Returns JavaScript code that can be used to recreate this FileInfo. */
222 public String getCode() {

Callers 5

zipUncompressMethod · 0.45
openAndAddToRecentMethod · 0.45
savePreferencesMethod · 0.45
flushMethod · 0.45
ejectBufferMethod · 0.45

Calls 3

getOffsetMethod · 0.95
getGapMethod · 0.95
getTypeMethod · 0.95

Tested by

no test coverage detected