Home | History | Annotate | Download | only in exif

Lines Matching refs:ExifTag

26  * @see ExifTag
31 private final Map<Short, ExifTag> mExifTags = new HashMap<Short, ExifTag>();
55 * Get a array the contains all {@link ExifTag} in this IFD.
57 protected ExifTag[] getAllTags() {
58 return mExifTags.values().toArray(new ExifTag[mExifTags.size()]);
75 * Gets the {@link ExifTag} with given tag id. Return null if there is no
78 protected ExifTag getTag(short tagId) {
83 * Adds or replaces a {@link ExifTag}.
85 protected ExifTag setTag(ExifTag tag) {
137 ExifTag[] tags = data.getAllTags();
138 for (ExifTag tag : tags) {
142 ExifTag tag2 = mExifTags.get(tag.getTagId());