Class PropertiesSearchMatch
- java.lang.Object
- 
- com.dropbox.core.v2.fileproperties.PropertiesSearchMatch
 
- 
 public class PropertiesSearchMatch extends java.lang.Object
- 
- 
Field SummaryFields Modifier and Type Field Description protected java.lang.Stringidprotected booleanisDeletedprotected java.lang.Stringpathprotected java.util.List<PropertyGroup>propertyGroups
 - 
Constructor SummaryConstructors Constructor Description PropertiesSearchMatch(java.lang.String id, java.lang.String path, boolean isDeleted, java.util.List<PropertyGroup> propertyGroups)
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetId()The ID for the matched file or folder.booleangetIsDeleted()Whether the file or folder is deleted.java.lang.StringgetPath()The path for the matched file or folder.java.util.List<PropertyGroup>getPropertyGroups()List of custom property groups associated with the file.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
idprotected final java.lang.String id 
 - 
pathprotected final java.lang.String path 
 - 
isDeletedprotected final boolean isDeleted 
 - 
propertyGroupsprotected final java.util.List<PropertyGroup> propertyGroups 
 
- 
 - 
Constructor Detail- 
PropertiesSearchMatchpublic PropertiesSearchMatch(java.lang.String id, java.lang.String path, boolean isDeleted, java.util.List<PropertyGroup> propertyGroups)- Parameters:
- id- The ID for the matched file or folder. Must have length of at least 1 and not be- null.
- path- The path for the matched file or folder. Must not be- null.
- isDeleted- Whether the file or folder is deleted.
- propertyGroups- List of custom property groups associated with the file. Must not contain a- nullitem and not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getIdpublic java.lang.String getId() The ID for the matched file or folder.- Returns:
- value for this field, never null.
 
 - 
getPathpublic java.lang.String getPath() The path for the matched file or folder.- Returns:
- value for this field, never null.
 
 - 
getIsDeletedpublic boolean getIsDeleted() Whether the file or folder is deleted.- Returns:
- value for this field.
 
 - 
getPropertyGroupspublic java.util.List<PropertyGroup> getPropertyGroups() List of custom property groups associated with the file.- Returns:
- value for this field, never null.
 
 - 
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
 
 
- 
 
-