Package com.dropbox.core.v2.files
Class SearchV2Result
- java.lang.Object
- 
- com.dropbox.core.v2.files.SearchV2Result
 
- 
 public class SearchV2Result extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringcursorprotected booleanhasMoreprotected java.util.List<SearchMatchV2>matches
 - 
Constructor SummaryConstructors Constructor Description SearchV2Result(java.util.List<SearchMatchV2> matches, boolean hasMore)NoneSearchV2Result(java.util.List<SearchMatchV2> matches, boolean hasMore, java.lang.String cursor)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetCursor()Pass the cursor intoDbxUserFilesRequests.searchContinueV2(String)to fetch the next page of results.booleangetHasMore()Used for paging.java.util.List<SearchMatchV2>getMatches()A list (possibly empty) of matches for the query.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
matchesprotected final java.util.List<SearchMatchV2> matches 
 - 
hasMoreprotected final boolean hasMore 
 - 
cursorprotected final java.lang.String cursor 
 
- 
 - 
Constructor Detail- 
SearchV2Resultpublic SearchV2Result(java.util.List<SearchMatchV2> matches, boolean hasMore, java.lang.String cursor) - Parameters:
- matches- A list (possibly empty) of matches for the query. Must not contain a- nullitem and not be- null.
- hasMore- Used for paging. If true, indicates there is another page of results available that can be fetched by calling- DbxUserFilesRequests.searchContinueV2(String)with the cursor.
- cursor- Pass the cursor into- DbxUserFilesRequests.searchContinueV2(String)to fetch the next page of results. Must have length of at least 1.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 - 
SearchV2Resultpublic SearchV2Result(java.util.List<SearchMatchV2> matches, boolean hasMore) NoneThe default values for unset fields will be used. - Parameters:
- matches- A list (possibly empty) of matches for the query. Must not contain a- nullitem and not be- null.
- hasMore- Used for paging. If true, indicates there is another page of results available that can be fetched by calling- DbxUserFilesRequests.searchContinueV2(String)with the cursor.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getMatchespublic java.util.List<SearchMatchV2> getMatches() A list (possibly empty) of matches for the query.- Returns:
- value for this field, never null.
 
 - 
getHasMorepublic boolean getHasMore() Used for paging. If true, indicates there is another page of results available that can be fetched by callingDbxUserFilesRequests.searchContinueV2(String)with the cursor.- Returns:
- value for this field.
 
 - 
getCursorpublic java.lang.String getCursor() Pass the cursor intoDbxUserFilesRequests.searchContinueV2(String)to fetch the next page of results.- Returns:
- value for this field, or nullif not present.
 
 - 
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
 
 
- 
 
-