Package com.dropbox.core.v2.sharing
Class AudienceExceptions
- java.lang.Object
- 
- com.dropbox.core.v2.sharing.AudienceExceptions
 
- 
 public class AudienceExceptions extends java.lang.ObjectThe total count and truncated list of information of content inside this folder that has a different audience than the link on this folder. This is only returned for folders.
- 
- 
Field SummaryFields Modifier and Type Field Description protected longcountprotected java.util.List<AudienceExceptionContentInfo>exceptions
 - 
Constructor SummaryConstructors Constructor Description AudienceExceptions(long count, java.util.List<AudienceExceptionContentInfo> exceptions)The total count and truncated list of information of content inside this folder that has a different audience than the link on this folder.
 - 
Method SummaryAll Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)longgetCount()java.util.List<AudienceExceptionContentInfo>getExceptions()A truncated list of some of the content that is an exception.inthashCode()java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Field Detail- 
countprotected final long count 
 - 
exceptionsprotected final java.util.List<AudienceExceptionContentInfo> exceptions 
 
- 
 - 
Constructor Detail- 
AudienceExceptionspublic AudienceExceptions(long count, java.util.List<AudienceExceptionContentInfo> exceptions)The total count and truncated list of information of content inside this folder that has a different audience than the link on this folder. This is only returned for folders.- Parameters:
- exceptions- A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0. Must not contain a- nullitem and not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getCountpublic long getCount() - Returns:
- value for this field.
 
 - 
getExceptionspublic java.util.List<AudienceExceptionContentInfo> getExceptions() A truncated list of some of the content that is an exception. The length of this list could be smaller than the count since it is only a sample but will not be empty as long as count is not 0.- 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
 
 
- 
 
-