Package com.dropbox.core.v1
Class DbxEntry.File.VideoInfo
- java.lang.Object
-
- com.dropbox.core.util.Dumpable
-
- com.dropbox.core.v1.DbxEntry.File.VideoInfo
-
- Enclosing class:
- DbxEntry.File
public static final class DbxEntry.File.VideoInfo extends Dumpable
Video metadata that the Dropbox server extracted from the video file.
-
-
Field Summary
Fields Modifier and Type Field Description java.lang.Long
duration
The duration of the video, in seconds.DbxEntry.File.Location
location
Where the video was recorded.static DbxEntry.File.VideoInfo
PENDING
The singleton value used when the Dropbox server returns "pending" forstatic JsonReader<DbxEntry.File.VideoInfo>
Reader
java.util.Date
timeTaken
When the video was recorded.
-
Constructor Summary
Constructors Constructor Description VideoInfo(java.util.Date timeTaken, DbxEntry.File.Location location, java.lang.Long duration)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
dumpFields(DumpWriter w)
boolean
equals(DbxEntry.File.VideoInfo o)
boolean
equals(java.lang.Object o)
int
hashCode()
-
Methods inherited from class com.dropbox.core.util.Dumpable
getTypeName, toString, toString, toStringMultiline, toStringMultiline
-
-
-
-
Field Detail
-
timeTaken
public final java.util.Date timeTaken
When the video was recorded.
-
location
public final DbxEntry.File.Location location
Where the video was recorded.
-
duration
public final java.lang.Long duration
The duration of the video, in seconds.
-
Reader
public static JsonReader<DbxEntry.File.VideoInfo> Reader
-
PENDING
public static final DbxEntry.File.VideoInfo PENDING
The singleton value used when the Dropbox server returns "pending" for
-
-
Constructor Detail
-
VideoInfo
public VideoInfo(java.util.Date timeTaken, DbxEntry.File.Location location, java.lang.Long duration)
-
-
Method Detail
-
dumpFields
protected void dumpFields(DumpWriter w)
- Specified by:
dumpFields
in classDumpable
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
equals
public boolean equals(DbxEntry.File.VideoInfo o)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-