loci.formats
Class TiffIFDEntry

java.lang.Object
  extended by loci.formats.TiffIFDEntry

public class TiffIFDEntry
extends Object

This class represents a single raw TIFF IFD entry. It does not retrieve or store the values from the entry's specific offset and is based on the TIFF 6.0 specification of an IFD entry.

Source code:
Trac, SVN

Author:
Chris Allan callan at blackcat.ca

Constructor Summary
TiffIFDEntry(int tag, int type, int valueCount, int valueOffset)
           
 
Method Summary
 int getTag()
          Retrieves the entry's Tag value.
 int getType()
          Retrieves the entry's Type value.
 int getValueCount()
          Retrieves the entry's ValueCount value.
 int getValueOffset()
          Retrieves the entry's ValueOffset value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TiffIFDEntry

public TiffIFDEntry(int tag,
                    int type,
                    int valueCount,
                    int valueOffset)
Method Detail

getTag

public int getTag()
Retrieves the entry's Tag value.

Returns:
the entry's Tag value.

getType

public int getType()
Retrieves the entry's Type value.

Returns:
the entry's Type value.

getValueCount

public int getValueCount()
Retrieves the entry's ValueCount value.

Returns:
the entry's ValueCount value.

getValueOffset

public int getValueOffset()
Retrieves the entry's ValueOffset value.

Returns:
the entry's ValueOffset value.