Enum Class XMPTag

java.lang.Object
java.lang.Enum<XMPTag>
be.gaudry.model.file.meta.XMPTag
All Implemented Interfaces:
PhotoMetaTag, com.thebuzzmedia.exiftool.Tag, Serializable, Comparable<XMPTag>, Constable

public enum XMPTag extends Enum<XMPTag> implements PhotoMetaTag
XMP (Extensible Metadata Platform) Tags Enum used to pre-define a convenient list of tags that can be easily extracted from images using this class with an external install of ExifTool.
Author:
Steph GAUDRY
  • Enum Constant Details

    • RIGHTS_CERTIFICATE

      public static final XMPTag RIGHTS_CERTIFICATE
    • RIGHTS_USAGE_TERMS

      public static final XMPTag RIGHTS_USAGE_TERMS
    • RIGHTS_OWNER

      public static final XMPTag RIGHTS_OWNER
    • DC_SUBJECT

      public static final XMPTag DC_SUBJECT
    • DC_RIGHTS

      public static final XMPTag DC_RIGHTS
    • DC_CREATOR

      public static final XMPTag DC_CREATOR
    • DC_DATE

      public static final XMPTag DC_DATE
    • IPTCCORE_CREATOR_WORK_URL

      public static final XMPTag IPTCCORE_CREATOR_WORK_URL
    • XMP_CREATORTOOL

      public static final XMPTag XMP_CREATORTOOL
    • EXIF_GPSDATETIME

      public static final XMPTag EXIF_GPSDATETIME
      called GPSTimeStamp by the spec; a date/time tag called GPSTimeStamp by the XMP specification. This tag is renamed here to prevent direct copy from EXIF:GPSTimeStamp which is a time-only tag. Instead, the value of this tag should be taken from Composite:GPSDateTime when copying from EXIF
  • Method Details

    • values

      public static XMPTag[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static XMPTag valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (Extraneous whitespace characters are not permitted.)
      Parameters:
      name - the name of the enum constant to be returned.
      Returns:
      the enum constant with the specified name
      Throws:
      IllegalArgumentException - if this enum class has no constant with the specified name
      NullPointerException - if the argument is null
    • isWritable

      public boolean isWritable()
      Specified by:
      isWritable in interface PhotoMetaTag
    • getName

      public String getName()
      Specified by:
      getName in interface com.thebuzzmedia.exiftool.Tag
    • parse

      public <T> T parse(String value)
      Specified by:
      parse in interface com.thebuzzmedia.exiftool.Tag
    • getInnerType

      public String getInnerType()
      Specified by:
      getInnerType in interface PhotoMetaTag