public class MediaMetadata
extends java.lang.Object
| Modifier and Type | Class and Description |
|---|---|
static class |
MediaMetadata.Builder
Builder for
MediaMetadata. |
| Modifier and Type | Field and Description |
|---|---|
protected Dimensions |
dimensions |
protected GpsCoordinates |
location |
protected java.util.Date |
timeTaken |
| Constructor and Description |
|---|
MediaMetadata()
Metadata for a photo or video.
|
MediaMetadata(Dimensions dimensions,
GpsCoordinates location,
java.util.Date timeTaken)
Metadata for a photo or video.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(java.lang.Object obj) |
Dimensions |
getDimensions()
Dimension of the photo/video.
|
GpsCoordinates |
getLocation()
The GPS coordinate of the photo/video.
|
java.util.Date |
getTimeTaken()
The timestamp when the photo/video is taken.
|
int |
hashCode() |
static MediaMetadata.Builder |
newBuilder()
Returns a new builder for creating an instance of this class.
|
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final Dimensions dimensions
protected final GpsCoordinates location
protected final java.util.Date timeTaken
public MediaMetadata(Dimensions dimensions, GpsCoordinates location, java.util.Date timeTaken)
Use newBuilder to create instances of this class without
specifying values for all optional fields.
dimensions - Dimension of the photo/video.location - The GPS coordinate of the photo/video.timeTaken - The timestamp when the photo/video is taken.public MediaMetadata()
The default values for unset fields will be used.
public Dimensions getDimensions()
null if not present.public GpsCoordinates getLocation()
null if not present.public java.util.Date getTimeTaken()
null if not present.public static MediaMetadata.Builder newBuilder()
public int hashCode()
hashCode in class java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals in class java.lang.Objectpublic java.lang.String toString()
toString in class java.lang.Objectpublic java.lang.String toStringMultiline()
The returned String may contain newlines.