public class

ExifTag

extends ValueConstruct
java.lang.Object
   ↳ com.google.gdata.data.AbstractExtension
     ↳ com.google.gdata.data.ValueConstruct
       ↳ com.google.gdata.data.photos.impl.ExifTag

Class Overview

An exif tag with a given name and value. All exif tags are represented as just a name and a string value. This element is marked "repeatable" because we allow arbitrary exif tags to be passed around.

Summary

Fields
private final String name
[Expand]
Inherited Fields
From class com.google.gdata.data.ValueConstruct
From class com.google.gdata.data.AbstractExtension
Public Constructors
ExifTag(String name)
Construct an empty exif tag with the given name.
ExifTag(String name, String value)
Construct an exif tag of <ns:name>value</ns:name>.
Public Methods
static ExtensionDescription getDefaultDescription()
Describe this tag.
String getName()
Get the name of this exif tag.
[Expand]
Inherited Methods
From class com.google.gdata.data.ValueConstruct
From class com.google.gdata.data.AbstractExtension
From class java.lang.Object
From interface com.google.gdata.data.Extension

Fields

private final String name

Public Constructors

public ExifTag (String name)

Construct an empty exif tag with the given name. Used when parsing the values from the client.

Parameters
name

public ExifTag (String name, String value)

Construct an exif tag of <ns:name>value</ns:name>.

Parameters
name
value

Public Methods

public static ExtensionDescription getDefaultDescription ()

Describe this tag. Does not include the name because that is set at runtime, rather than at compile time.

public String getName ()

Get the name of this exif tag.