Package com.dropbox.core.v2.team
Class TeamFolderListResult
- java.lang.Object
- 
- com.dropbox.core.v2.team.TeamFolderListResult
 
- 
 public class TeamFolderListResult extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringcursorprotected booleanhasMoreprotected java.util.List<TeamFolderMetadata>teamFolders
 - 
Constructor SummaryConstructors Constructor Description TeamFolderListResult(java.util.List<TeamFolderMetadata> teamFolders, java.lang.String cursor, boolean hasMore)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetCursor()Pass the cursor intoDbxTeamTeamRequests.teamFolderListContinue(String)to obtain additional team folders.booleangetHasMore()Is true if there are additional team folders that have not been returned yet.java.util.List<TeamFolderMetadata>getTeamFolders()List of all team folders in the authenticated team.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
teamFoldersprotected final java.util.List<TeamFolderMetadata> teamFolders 
 - 
cursorprotected final java.lang.String cursor 
 - 
hasMoreprotected final boolean hasMore 
 
- 
 - 
Constructor Detail- 
TeamFolderListResultpublic TeamFolderListResult(java.util.List<TeamFolderMetadata> teamFolders, java.lang.String cursor, boolean hasMore) Result forDbxTeamTeamRequests.teamFolderList(long)andDbxTeamTeamRequests.teamFolderListContinue(String).- Parameters:
- teamFolders- List of all team folders in the authenticated team. Must not contain a- nullitem and not be- null.
- cursor- Pass the cursor into- DbxTeamTeamRequests.teamFolderListContinue(String)to obtain additional team folders. Must not be- null.
- hasMore- Is true if there are additional team folders that have not been returned yet. An additional call to- DbxTeamTeamRequests.teamFolderListContinue(String)can retrieve them.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getTeamFolderspublic java.util.List<TeamFolderMetadata> getTeamFolders() List of all team folders in the authenticated team.- Returns:
- value for this field, never null.
 
 - 
getCursorpublic java.lang.String getCursor() Pass the cursor intoDbxTeamTeamRequests.teamFolderListContinue(String)to obtain additional team folders.- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Is true if there are additional team folders that have not been returned yet. An additional call toDbxTeamTeamRequests.teamFolderListContinue(String)can retrieve them.- Returns:
- value for this field.
 
 - 
hashCodepublic int hashCode() - Overrides:
- hashCodein class- java.lang.Object
 
 - 
equalspublic boolean equals(java.lang.Object obj) - Overrides:
- equalsin class- java.lang.Object
 
 - 
toStringpublic java.lang.String toString() - Overrides:
- toStringin class- java.lang.Object
 
 - 
toStringMultilinepublic java.lang.String toStringMultiline() Returns a String representation of this object formatted for easier readability.The returned String may contain newlines. - Returns:
- Formatted, multiline String representation of this object
 
 
- 
 
-