Package com.dropbox.core.v2.users
Class SpaceUsage
- java.lang.Object
-
- com.dropbox.core.v2.users.SpaceUsage
-
public class SpaceUsage extends java.lang.Object
Information about a user's space usage and quota.
-
-
Field Summary
Fields Modifier and Type Field Description protected SpaceAllocation
allocation
protected long
used
-
Constructor Summary
Constructors Constructor Description SpaceUsage(long used, SpaceAllocation allocation)
Information about a user's space usage and quota.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object obj)
SpaceAllocation
getAllocation()
The user's space allocation.long
getUsed()
The user's total space usage (bytes).int
hashCode()
java.lang.String
toString()
java.lang.String
toStringMultiline()
Returns a String representation of this object formatted for easier readability.
-
-
-
Field Detail
-
used
protected final long used
-
allocation
protected final SpaceAllocation allocation
-
-
Constructor Detail
-
SpaceUsage
public SpaceUsage(long used, SpaceAllocation allocation)
Information about a user's space usage and quota.- Parameters:
used
- The user's total space usage (bytes).allocation
- The user's space allocation. Must not benull
.- Throws:
java.lang.IllegalArgumentException
- If any argument does not meet its preconditions.
-
-
Method Detail
-
getUsed
public long getUsed()
The user's total space usage (bytes).- Returns:
- value for this field.
-
getAllocation
public SpaceAllocation getAllocation()
The user's space allocation.- Returns:
- value for this field, never
null
.
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equals
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in 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
-
-