public interface Album
extends com.thingspace.cloud.sdk.list.item.Item
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getCreationDate() |
ItemList<File> |
getFiles(android.content.Context context,
SortType sortType)
Retrieve a list of all files that belongs to this Album.
|
java.lang.String |
getLastModifiedDate() |
java.lang.String |
getMimeType() |
java.lang.String |
getName() |
java.lang.String |
getType() |
java.lang.String |
getUid() |
java.lang.String |
getUri() |
java.lang.String getName()
java.lang.String getUid()
java.lang.String getMimeType()
java.lang.String getCreationDate()
java.lang.String getLastModifiedDate()
java.lang.String getType()
java.lang.String getUri()
ItemList<File> getFiles(android.content.Context context, SortType sortType)
Photo
, Video
, or Audio
to access their specific attributes.
CloudAPIException
will be thrown with an error code CloudAPIException.ErrorCode#USER_UNAUTHORIZED
if user is not authorized to perform this operation.context
- Context
objectsortType
- The sort type as defined in SortType
, combined with sort order SortType.setOrder(SortType.SortOrder)
.
ItemList
populated with File
as list item. This list will contain all the files stored in this album under user's cloud storage account. Call ItemList.close()
when the list is no longer needed. CloudAPIException
will be thrown if the request cannot be processed.