Class PropertiesSearchMatch
- java.lang.Object
-
- com.dropbox.core.v2.fileproperties.PropertiesSearchMatch
-
public class PropertiesSearchMatch extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringidprotected booleanisDeletedprotected java.lang.Stringpathprotected java.util.List<PropertyGroup>propertyGroups
-
Constructor Summary
Constructors Constructor Description PropertiesSearchMatch(java.lang.String id, java.lang.String path, boolean isDeleted, java.util.List<PropertyGroup> propertyGroups)
-
Method Summary
All 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
-
id
protected final java.lang.String id
-
path
protected final java.lang.String path
-
isDeleted
protected final boolean isDeleted
-
propertyGroups
protected final java.util.List<PropertyGroup> propertyGroups
-
-
Constructor Detail
-
PropertiesSearchMatch
public 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 benull.path- The path for the matched file or folder. Must not benull.isDeleted- Whether the file or folder is deleted.propertyGroups- List of custom property groups associated with the file. Must not contain anullitem and not benull.- Throws:
java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
-
-
Method Detail
-
getId
public java.lang.String getId()
The ID for the matched file or folder.- Returns:
- value for this field, never
null.
-
getPath
public java.lang.String getPath()
The path for the matched file or folder.- Returns:
- value for this field, never
null.
-
getIsDeleted
public boolean getIsDeleted()
Whether the file or folder is deleted.- Returns:
- value for this field.
-
getPropertyGroups
public java.util.List<PropertyGroup> getPropertyGroups()
List of custom property groups associated with the file.- Returns:
- value for this field, never
null.
-
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
-
-