1 | /*
|
---|
2 | * Copyright 2002-2019 Drew Noakes and contributors
|
---|
3 | *
|
---|
4 | * Licensed under the Apache License, Version 2.0 (the "License");
|
---|
5 | * you may not use this file except in compliance with the License.
|
---|
6 | * You may obtain a copy of the License at
|
---|
7 | *
|
---|
8 | * http://www.apache.org/licenses/LICENSE-2.0
|
---|
9 | *
|
---|
10 | * Unless required by applicable law or agreed to in writing, software
|
---|
11 | * distributed under the License is distributed on an "AS IS" BASIS,
|
---|
12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
---|
13 | * See the License for the specific language governing permissions and
|
---|
14 | * limitations under the License.
|
---|
15 | *
|
---|
16 | * More information about this project is available at:
|
---|
17 | *
|
---|
18 | * https://drewnoakes.com/code/exif/
|
---|
19 | * https://github.com/drewnoakes/metadata-extractor
|
---|
20 | */
|
---|
21 | package com.drew.metadata.jpeg;
|
---|
22 |
|
---|
23 | import com.drew.lang.annotations.NotNull;
|
---|
24 | import com.drew.metadata.Directory;
|
---|
25 |
|
---|
26 | import java.util.HashMap;
|
---|
27 |
|
---|
28 | /**
|
---|
29 | * Describes tags used by a JPEG file comment.
|
---|
30 | *
|
---|
31 | * @author Drew Noakes https://drewnoakes.com
|
---|
32 | */
|
---|
33 | @SuppressWarnings("WeakerAccess")
|
---|
34 | public class JpegCommentDirectory extends Directory
|
---|
35 | {
|
---|
36 | /**
|
---|
37 | * This value does not apply to a particular standard. Rather, this value has been fabricated to maintain
|
---|
38 | * consistency with other directory types.
|
---|
39 | */
|
---|
40 | public static final int TAG_COMMENT = 0;
|
---|
41 |
|
---|
42 | @NotNull
|
---|
43 | protected static final HashMap<Integer, String> _tagNameMap = new HashMap<Integer, String>();
|
---|
44 |
|
---|
45 | static {
|
---|
46 | _tagNameMap.put(TAG_COMMENT, "JPEG Comment");
|
---|
47 | }
|
---|
48 |
|
---|
49 | public JpegCommentDirectory()
|
---|
50 | {
|
---|
51 | this.setDescriptor(new JpegCommentDescriptor(this));
|
---|
52 | }
|
---|
53 |
|
---|
54 | @Override
|
---|
55 | @NotNull
|
---|
56 | public String getName()
|
---|
57 | {
|
---|
58 | return "JpegComment";
|
---|
59 | }
|
---|
60 |
|
---|
61 | @Override
|
---|
62 | @NotNull
|
---|
63 | protected HashMap<Integer, String> getTagNameMap()
|
---|
64 | {
|
---|
65 | return _tagNameMap;
|
---|
66 | }
|
---|
67 | }
|
---|