Class TIFFTagSet
- java.lang.Object
-
- com.github.jaiimageio.plugins.tiff.TIFFTagSet
-
- Direct Known Subclasses:
BaselineTIFFTagSet,EXIFGPSTagSet,EXIFInteroperabilityTagSet,EXIFParentTIFFTagSet,EXIFTIFFTagSet,FaxTIFFTagSet,GeoTIFFTagSet
public class TIFFTagSet extends java.lang.ObjectA class representing a set of TIFF tags. Each tag in the set must have a unique number (this is a limitation of the TIFF specification itself).This class and its subclasses are responsible for mapping between raw tag numbers and
TIFFTagobjects, which contain additional information about each tag, such as the tag's name, legal data types, and mnemonic names for some or all of ts data values.- See Also:
TIFFTag
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.SortedMapallowedTagsByNameprivate java.util.SortedMapallowedTagsByNumber
-
Constructor Summary
Constructors Modifier Constructor Description privateTIFFTagSet()Constructs a TIFFTagSet.TIFFTagSet(java.util.List tags)Constructs aTIFFTagSet, given aListofTIFFTagobjects.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TIFFTaggetTag(int tagNumber)Returns theTIFFTagfrom this set that is associated with the given tag number, ornullif no tag exists for that number.TIFFTaggetTag(java.lang.String tagName)Returns theTIFFTaghaving the given tag name, ornullif the named tag does not belong to this tag set.java.util.SortedSetgetTagNames()Retrieves an unmodifiable lexicographically increasing set of tag names.java.util.SortedSetgetTagNumbers()Retrieves an unmodifiable numerically increasing set of tag numbers.
-
-
-
Constructor Detail
-
TIFFTagSet
private TIFFTagSet()
Constructs a TIFFTagSet.
-
TIFFTagSet
public TIFFTagSet(java.util.List tags)
Constructs aTIFFTagSet, given aListofTIFFTagobjects.- Parameters:
tags- aListobject containingTIFFTagobjects to be added to this tag set.- Throws:
java.lang.IllegalArgumentException- iftagsisnull, or contains objects that are not instances of theTIFFTagclass.
-
-
Method Detail
-
getTag
public TIFFTag getTag(int tagNumber)
Returns theTIFFTagfrom this set that is associated with the given tag number, ornullif no tag exists for that number.- Parameters:
tagNumber- the number of the tag to be retrieved.- Returns:
- the numbered
TIFFTag, ornull.
-
getTag
public TIFFTag getTag(java.lang.String tagName)
Returns theTIFFTaghaving the given tag name, ornullif the named tag does not belong to this tag set.- Parameters:
tagName- the name of the tag to be retrieved, as aString.- Returns:
- the named
TIFFTag, ornull. - Throws:
java.lang.IllegalArgumentException- iftagNameisnull.
-
getTagNumbers
public java.util.SortedSet getTagNumbers()
Retrieves an unmodifiable numerically increasing set of tag numbers.The returned object is unmodifiable and contains the tag numbers of all
TIFFTags in thisTIFFTagSetsorted into ascending order according to {@linkInteger#compareTo(Object)}.- Returns:
- All tag numbers in this set.
-
getTagNames
public java.util.SortedSet getTagNames()
Retrieves an unmodifiable lexicographically increasing set of tag names.The returned object is unmodifiable and contains the tag names of all
TIFFTags in thisTIFFTagSetsorted into ascending order according to {@linkString#compareTo(Object)}.- Returns:
- All tag names in this set.
-
-