Package com.dropbox.core.v2.teamlog
Class GroupLogInfo
- java.lang.Object
- 
- com.dropbox.core.v2.teamlog.GroupLogInfo
 
- 
 public class GroupLogInfo extends java.lang.ObjectGroup's logged information.
- 
- 
Nested Class SummaryNested Classes Modifier and Type Class Description static classGroupLogInfo.BuilderBuilder forGroupLogInfo.
 - 
Field SummaryFields Modifier and Type Field Description protected java.lang.StringdisplayNameprotected java.lang.StringexternalIdprotected java.lang.StringgroupId
 - 
Constructor SummaryConstructors Constructor Description GroupLogInfo(java.lang.String displayName)Group's logged information.GroupLogInfo(java.lang.String displayName, java.lang.String groupId, java.lang.String externalId)Group's logged information.
 - 
Method SummaryAll Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(java.lang.Object obj)java.lang.StringgetDisplayName()The name of this group.java.lang.StringgetExternalId()External group ID.java.lang.StringgetGroupId()The unique id of this group.inthashCode()static GroupLogInfo.BuildernewBuilder(java.lang.String displayName)Returns a new builder for creating an instance of this class.java.lang.StringtoString()java.lang.StringtoStringMultiline()Returns a String representation of this object formatted for easier readability.
 
- 
- 
- 
Constructor Detail- 
GroupLogInfopublic GroupLogInfo(java.lang.String displayName, java.lang.String groupId, java.lang.String externalId)Group's logged information.Use newBuilder(java.lang.String)to create instances of this class without specifying values for all optional fields.- Parameters:
- displayName- The name of this group. Must not be- null.
- groupId- The unique id of this group.
- externalId- External group ID.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 - 
GroupLogInfopublic GroupLogInfo(java.lang.String displayName) Group's logged information.The default values for unset fields will be used. - Parameters:
- displayName- The name of this group. Must not be- null.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 
- 
 - 
Method Detail- 
getDisplayNamepublic java.lang.String getDisplayName() The name of this group.- Returns:
- value for this field, never null.
 
 - 
getGroupIdpublic java.lang.String getGroupId() The unique id of this group.- Returns:
- value for this field, or nullif not present.
 
 - 
getExternalIdpublic java.lang.String getExternalId() External group ID.- Returns:
- value for this field, or nullif not present.
 
 - 
newBuilderpublic static GroupLogInfo.Builder newBuilder(java.lang.String displayName) Returns a new builder for creating an instance of this class.- Parameters:
- displayName- The name of this group. Must not be- null.
- Returns:
- builder for this class.
- Throws:
- java.lang.IllegalArgumentException- If any argument does not meet its preconditions.
 
 - 
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
 
 
- 
 
-