Package | Description |
---|---|
com.dropbox.core |
Modifier and Type | Class and Description |
---|---|
static class |
DbxEntry.File
The subclass of
DbxEntry used to represent file metadata (as opposed
to folder metadata). |
static class |
DbxEntry.Folder
The subclass of
DbxEntry used to represent folder metadata. |
Modifier and Type | Field and Description |
---|---|
DbxEntry |
DbxEntry.WithChildren.entry |
DbxEntry |
DbxEntry.WithChildrenC.entry |
Modifier and Type | Field and Description |
---|---|
List<DbxEntry> |
DbxEntry.WithChildren.children
If
DbxEntry.WithChildren.entry is a folder, this will contain the metadata of the folder's
immediate children. |
static JsonReader<DbxEntry> |
DbxEntry.Reader |
Modifier and Type | Method and Description |
---|---|
DbxEntry |
DbxClient.getMetadata(String path)
Get the file or folder metadata for a given path.
|
Modifier and Type | Method and Description |
---|---|
DbxDelta<DbxEntry> |
DbxClient.getDelta(String cursor)
Return "delta" entries for the contents of a user's Dropbox.
|
<C> DbxDeltaC<C,DbxEntry> |
DbxClient.getDeltaC(String cursor,
Collector<DbxDeltaC.Entry<DbxEntry>,C> collector)
This is a more generic version of
DbxClient.getDelta(java.lang.String) . |
Modifier and Type | Method and Description |
---|---|
static <C> DbxEntry.WithChildrenC<C> |
DbxEntry.extract(com.fasterxml.jackson.core.JsonParser parser,
Collector<DbxEntry,? extends C> collector) |
<C> DbxDeltaC<C,DbxEntry> |
DbxClient.getDeltaC(String cursor,
Collector<DbxDeltaC.Entry<DbxEntry>,C> collector)
This is a more generic version of
DbxClient.getDelta(java.lang.String) . |
<C> DbxEntry.WithChildrenC<C> |
DbxClient.getMetadataWithChildrenC(String path,
Collector<DbxEntry,? extends C> collector)
Same as
DbxClient.getMetadataWithChildren(java.lang.String) except instead of always returning a list of
DbxEntry objects, you specify a Collector that processes the DbxEntry
objects one by one and aggregates them however you want. |
<C> Maybe<DbxEntry.WithChildrenC<C>> |
DbxClient.getMetadataWithChildrenIfChangedC(String path,
String previousFolderHash,
Collector<DbxEntry,? extends C> collector)
Same as
DbxClient.getMetadataWithChildrenIfChanged(java.lang.String, java.lang.String) except instead of always returning a list of
DbxEntry objects, you specify a Collector that processes the DbxEntry
objects one by one and aggregates them however you want. |
Constructor and Description |
---|
DbxEntry.WithChildren(DbxEntry entry,
String hash,
List<DbxEntry> children) |
DbxEntry.WithChildrenC(DbxEntry entry,
String hash,
C children) |
Constructor and Description |
---|
DbxEntry.WithChildren(DbxEntry entry,
String hash,
List<DbxEntry> children) |
DbxEntry.WithChildrenC.Reader(Collector<DbxEntry,? extends C> collector) |
Copyright © 2013. All rights reserved.