public interface Playlist
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)
Get all files that belongs to this playlist stored in user's cloud storage account.
|
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. Call ItemList.close()
when the list is no longer needed. CloudAPIException
will be thrown if the request cannot be processed.