Class PropertiesSearchResult
- java.lang.Object
-
- com.dropbox.core.v2.fileproperties.PropertiesSearchResult
-
public class PropertiesSearchResult extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringcursorprotected java.util.List<PropertiesSearchMatch>matches
-
Constructor Summary
Constructors Constructor Description PropertiesSearchResult(java.util.List<PropertiesSearchMatch> matches)NonePropertiesSearchResult(java.util.List<PropertiesSearchMatch> matches, java.lang.String cursor)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetCursor()Pass the cursor intoDbxUserFilePropertiesRequests.propertiesSearchContinue(String)to continue to receive search results.java.util.List<PropertiesSearchMatch>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
-
matches
protected final java.util.List<PropertiesSearchMatch> matches
-
cursor
protected final java.lang.String cursor
-
-
Constructor Detail
-
PropertiesSearchResult
public PropertiesSearchResult(java.util.List<PropertiesSearchMatch> matches, java.lang.String cursor)
- Parameters:
matches- A list (possibly empty) of matches for the query. Must not contain anullitem and not benull.cursor- Pass the cursor intoDbxUserFilePropertiesRequests.propertiesSearchContinue(String)to continue to receive search results. Cursor will be null when there are no more results. Must have length of at least 1.- Throws:
java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
-
PropertiesSearchResult
public PropertiesSearchResult(java.util.List<PropertiesSearchMatch> matches)
NoneThe default values for unset fields will be used.
- Parameters:
matches- A list (possibly empty) of matches for the query. Must not contain anullitem and not benull.- Throws:
java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
-
-
Method Detail
-
getMatches
public java.util.List<PropertiesSearchMatch> getMatches()
A list (possibly empty) of matches for the query.- Returns:
- value for this field, never
null.
-
getCursor
public java.lang.String getCursor()
Pass the cursor intoDbxUserFilePropertiesRequests.propertiesSearchContinue(String)to continue to receive search results. Cursor will be null when there are no more results.- Returns:
- value for this field, or
nullif not present.
-
hashCode
public int hashCode()
- Overrides:
hashCodein classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
toStringMultiline
public 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
-
-