|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<ImageMetadataType> magoffin.matt.meta.image.ImageMetadataType
public enum ImageMetadataType
Metadata types for image media.
Enum Constant Summary | |
---|---|
APERTURE
The aperture (APEX value) the photo was taken with. |
|
CAMERA_MAKE
The camera make the photo was taken with. |
|
CAMERA_MODEL
The camera model the photo was taken with. |
|
COMMENT
A comment. |
|
DATE_TAKEN
The date the photo was taken, as a Date object. |
|
EXPOSURE_BIAS
The exposure bias the photo was taken with. |
|
EXPOSURE_TIME
The exposure time the photo was taken with. |
|
F_STOP
The aperture (F-Stop value) the photo was taken with. |
|
FLASH
The flash setting the photo was taken with. |
|
FOCAL_LENGTH
The focal length the photo was taken with. |
|
FOCAL_LENGTH_35MM_EQUIV
The focal length in 35mm terms the photo was taken with. |
|
GPS_LATITUDE
The GPS latitude value of the image's location. |
|
GPS_LONGITUDE
The GPS longitude value of the image's location. |
|
ORIENTATION
The orientation of the camer the photo was taken with. |
|
SHUTTER_SPEED
The shutter speed the photo was taken with. |
|
TITLE
A title for the image. |
Method Summary | |
---|---|
java.lang.Class<?> |
getObjectType()
Get the type of object this metadata represents. |
static ImageMetadataType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ImageMetadataType[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ImageMetadataType APERTURE
public static final ImageMetadataType COMMENT
public static final ImageMetadataType F_STOP
public static final ImageMetadataType CAMERA_MAKE
public static final ImageMetadataType CAMERA_MODEL
public static final ImageMetadataType DATE_TAKEN
Date
object.
public static final ImageMetadataType FLASH
public static final ImageMetadataType ORIENTATION
public static final ImageMetadataType SHUTTER_SPEED
public static final ImageMetadataType TITLE
public static final ImageMetadataType FOCAL_LENGTH
public static final ImageMetadataType FOCAL_LENGTH_35MM_EQUIV
public static final ImageMetadataType GPS_LONGITUDE
public static final ImageMetadataType GPS_LATITUDE
public static final ImageMetadataType EXPOSURE_BIAS
public static final ImageMetadataType EXPOSURE_TIME
Method Detail |
---|
public static final ImageMetadataType[] values()
for(ImageMetadataType c : ImageMetadataType.values()) System.out.println(c);
public static ImageMetadataType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.
java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namepublic java.lang.Class<?> getObjectType()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |