Package gov.nih.mipav.model.file
Class MetadataExtractor.KodakMakernoteDirectory
- java.lang.Object
-
- gov.nih.mipav.model.file.MetadataExtractor.Directory
-
- gov.nih.mipav.model.file.MetadataExtractor.KodakMakernoteDirectory
-
- Enclosing class:
- MetadataExtractor
public class MetadataExtractor.KodakMakernoteDirectory extends MetadataExtractor.Directory
Describes tags specific to Kodak cameras.- Author:
- Drew Noakes https://drewnoakes.com
-
-
Field Summary
Fields Modifier and Type Field Description private java.util.HashMap<java.lang.Integer,java.lang.String>
_tagNameMap
static int
TAG_BURST_MODE
static int
TAG_BURST_MODE_2
static int
TAG_COLOR_MODE
static int
TAG_DATE_TIME_STAMP
static int
TAG_DIGITAL_ZOOM
static int
TAG_EXPOSURE_COMPENSATION
static int
TAG_EXPOSURE_TIME
static int
TAG_F_NUMBER
static int
TAG_FLASH_FIRED
static int
TAG_FLASH_MODE
static int
TAG_FOCUS_MODE
static int
TAG_IMAGE_HEIGHT
static int
TAG_IMAGE_WIDTH
static int
TAG_ISO
static int
TAG_ISO_SETTING
static int
TAG_KODAK_MODEL
static int
TAG_METERING_MODE
static int
TAG_MONTH_DAY_CREATED
static int
TAG_QUALITY
static int
TAG_SEQUENCE_NUMBER
static int
TAG_SHARPNESS
static int
TAG_SHUTTER_MODE
static int
TAG_TIME_CREATED
static int
TAG_TOTAL_ZOOM
static int
TAG_WHITE_BALANCE
static int
TAG_YEAR_CREATED
-
Fields inherited from class gov.nih.mipav.model.file.MetadataExtractor.Directory
_definedTagList, _descriptor, _tagMap
-
-
Constructor Summary
Constructors Constructor Description KodakMakernoteDirectory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
Provides the name of the directory, for display purposes.protected java.util.HashMap<java.lang.Integer,java.lang.String>
getTagNameMap()
Provides the map of tag names, hashed by tag type identifier.-
Methods inherited from class gov.nih.mipav.model.file.MetadataExtractor.Directory
addError, containsTag, getBoolean, getBooleanObject, getByteArray, getDate, getDate, getDate, getDescription, getDouble, getDoubleObject, getErrorCount, getErrors, getFloat, getFloatObject, getInt, getIntArray, getInteger, getLong, getLongObject, getObject, getParent, getRational, getRationalArray, getString, getString, getStringArray, getStringValue, getStringValueArray, getTagCount, getTagName, getTags, hasErrors, hasTagName, isEmpty, setBoolean, setByteArray, setDate, setDescriptor, setDouble, setDoubleArray, setFloat, setFloatArray, setInt, setIntArray, setLong, setObject, setObjectArray, setParent, setRational, setRationalArray, setString, setStringArray, setStringValue, setStringValueArray, toString
-
-
-
-
Field Detail
-
TAG_KODAK_MODEL
public static final int TAG_KODAK_MODEL
- See Also:
- Constant Field Values
-
TAG_QUALITY
public static final int TAG_QUALITY
- See Also:
- Constant Field Values
-
TAG_BURST_MODE
public static final int TAG_BURST_MODE
- See Also:
- Constant Field Values
-
TAG_IMAGE_WIDTH
public static final int TAG_IMAGE_WIDTH
- See Also:
- Constant Field Values
-
TAG_IMAGE_HEIGHT
public static final int TAG_IMAGE_HEIGHT
- See Also:
- Constant Field Values
-
TAG_YEAR_CREATED
public static final int TAG_YEAR_CREATED
- See Also:
- Constant Field Values
-
TAG_MONTH_DAY_CREATED
public static final int TAG_MONTH_DAY_CREATED
- See Also:
- Constant Field Values
-
TAG_TIME_CREATED
public static final int TAG_TIME_CREATED
- See Also:
- Constant Field Values
-
TAG_BURST_MODE_2
public static final int TAG_BURST_MODE_2
- See Also:
- Constant Field Values
-
TAG_SHUTTER_MODE
public static final int TAG_SHUTTER_MODE
- See Also:
- Constant Field Values
-
TAG_METERING_MODE
public static final int TAG_METERING_MODE
- See Also:
- Constant Field Values
-
TAG_SEQUENCE_NUMBER
public static final int TAG_SEQUENCE_NUMBER
- See Also:
- Constant Field Values
-
TAG_F_NUMBER
public static final int TAG_F_NUMBER
- See Also:
- Constant Field Values
-
TAG_EXPOSURE_TIME
public static final int TAG_EXPOSURE_TIME
- See Also:
- Constant Field Values
-
TAG_EXPOSURE_COMPENSATION
public static final int TAG_EXPOSURE_COMPENSATION
- See Also:
- Constant Field Values
-
TAG_FOCUS_MODE
public static final int TAG_FOCUS_MODE
- See Also:
- Constant Field Values
-
TAG_WHITE_BALANCE
public static final int TAG_WHITE_BALANCE
- See Also:
- Constant Field Values
-
TAG_FLASH_MODE
public static final int TAG_FLASH_MODE
- See Also:
- Constant Field Values
-
TAG_FLASH_FIRED
public static final int TAG_FLASH_FIRED
- See Also:
- Constant Field Values
-
TAG_ISO_SETTING
public static final int TAG_ISO_SETTING
- See Also:
- Constant Field Values
-
TAG_ISO
public static final int TAG_ISO
- See Also:
- Constant Field Values
-
TAG_TOTAL_ZOOM
public static final int TAG_TOTAL_ZOOM
- See Also:
- Constant Field Values
-
TAG_DATE_TIME_STAMP
public static final int TAG_DATE_TIME_STAMP
- See Also:
- Constant Field Values
-
TAG_COLOR_MODE
public static final int TAG_COLOR_MODE
- See Also:
- Constant Field Values
-
TAG_DIGITAL_ZOOM
public static final int TAG_DIGITAL_ZOOM
- See Also:
- Constant Field Values
-
TAG_SHARPNESS
public static final int TAG_SHARPNESS
- See Also:
- Constant Field Values
-
_tagNameMap
private final java.util.HashMap<java.lang.Integer,java.lang.String> _tagNameMap
-
-
Method Detail
-
getName
public java.lang.String getName()
Description copied from class:MetadataExtractor.Directory
Provides the name of the directory, for display purposes. E.g.Exif
- Specified by:
getName
in classMetadataExtractor.Directory
- Returns:
- the name of the directory
-
getTagNameMap
protected java.util.HashMap<java.lang.Integer,java.lang.String> getTagNameMap()
Description copied from class:MetadataExtractor.Directory
Provides the map of tag names, hashed by tag type identifier.- Specified by:
getTagNameMap
in classMetadataExtractor.Directory
- Returns:
- the map of tag names
-
-