public abstract class ExifDictionaryBasePackage extends CustomPackage
Provides an abstract base class for EXIF metadata dictionaries.
Learn more
Modifier and Type | Method and Description |
---|---|
void |
clear()
Removes all TIFF tags stored in the package.
|
TiffTag |
getByTiffTagID(TiffTagID tagId)
Gets the TIFF tag with the specified id.
|
boolean |
remove(TiffTagID tagId)
Removes the property with the specified id.
|
void |
set(TiffTag tag)
Adds or replaces the specified tag.
|
IReadOnlyList<TiffTag> |
toList()
Creates a list from the package.
|
addProperties, contains, findProperties, get_Item, getCount, getKeys, getKnowPropertyDescriptors, getMetadataType, getPropertyDescriptors, iterator, removeProperties, sanitize, setProperties, updateProperties
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
forEach, spliterator
public final IReadOnlyList<TiffTag> toList()
Creates a list from the package.
public final TiffTag getByTiffTagID(TiffTagID tagId)
Gets the TIFF tag with the specified id.
tagId
- The id of the tag to retrieve.TiffTag
with the specified tag id.public final boolean remove(TiffTagID tagId)
Removes the property with the specified id.
tagId
- A TIFF tag id.public final void set(TiffTag tag)
Adds or replaces the specified tag.
tag
- The tag to set.public final void clear()
Removes all TIFF tags stored in the package.