Package com.dropbox.core.v2.paper
Class Folder
- java.lang.Object
-
- com.dropbox.core.v2.paper.Folder
-
public class Folder extends java.lang.ObjectData structure representing a Paper folder.
-
-
Constructor Summary
Constructors Constructor Description Folder(java.lang.String id, java.lang.String name)Data structure representing a Paper folder.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetId()Paper folder ID.java.lang.StringgetName()Paper folder name.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
-
-
-
Constructor Detail
-
Folder
public Folder(@Nonnull java.lang.String id, @Nonnull java.lang.String name)Data structure representing a Paper folder.- Parameters:
id- Paper folder ID. This ID uniquely identifies the folder. Must not benull.name- Paper folder name. Must not benull.- Throws:
java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
-
-
Method Detail
-
getId
@Nonnull public java.lang.String getId()
Paper folder ID. This ID uniquely identifies the folder.- Returns:
- value for this field, never
null.
-
getName
@Nonnull public java.lang.String getName()
Paper folder name.- 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
-
-