Package com.pixelmed.convert
Class TIFFImageFileDirectoryEntry
- java.lang.Object
-
- com.pixelmed.convert.TIFFImageFileDirectoryEntry
-
public class TIFFImageFileDirectoryEntry extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected longnumberOfValuesprotected inttagIdentifierprotected inttagTypeprotected TIFFValuesvalues
-
Constructor Summary
Constructors Constructor Description TIFFImageFileDirectoryEntry(int tagIdentifier, int tagType, long numberOfValues, TIFFValues values)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetNumberOfValues()intgetTagIdentifier()intgetTagType()TIFFValuesgetValues()static TIFFImageFileDirectoryEntryreadBigIFDEntry(TIFFFile f)static TIFFImageFileDirectoryEntryreadClassicIFDEntry(TIFFFile f)java.lang.StringtoString()
-
-
-
Field Detail
-
tagIdentifier
protected int tagIdentifier
-
tagType
protected int tagType
-
numberOfValues
protected long numberOfValues
-
values
protected TIFFValues values
-
-
Constructor Detail
-
TIFFImageFileDirectoryEntry
public TIFFImageFileDirectoryEntry(int tagIdentifier, int tagType, long numberOfValues, TIFFValues values)
-
-
Method Detail
-
getTagIdentifier
public int getTagIdentifier()
-
getTagType
public int getTagType()
-
getNumberOfValues
public long getNumberOfValues()
-
getValues
public TIFFValues getValues()
-
readBigIFDEntry
public static TIFFImageFileDirectoryEntry readBigIFDEntry(TIFFFile f) throws java.io.EOFException, java.io.IOException, TIFFException
- Throws:
java.io.EOFExceptionjava.io.IOExceptionTIFFException
-
readClassicIFDEntry
public static TIFFImageFileDirectoryEntry readClassicIFDEntry(TIFFFile f) throws java.io.EOFException, java.io.IOException, TIFFException
- Throws:
java.io.EOFExceptionjava.io.IOExceptionTIFFException
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-