public class AppLogInfo
extends java.lang.Object
Modifier and Type | Class and Description |
---|---|
static class |
AppLogInfo.Builder
Builder for
AppLogInfo . |
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
appId |
protected java.lang.String |
displayName |
Constructor and Description |
---|
AppLogInfo()
App's logged information.
|
AppLogInfo(java.lang.String appId,
java.lang.String displayName)
App's logged information.
|
Modifier and Type | Method and Description |
---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getAppId()
App unique ID.
|
java.lang.String |
getDisplayName()
App display name.
|
int |
hashCode() |
static AppLogInfo.Builder |
newBuilder()
Returns a new builder for creating an instance of this class.
|
java.lang.String |
toString() |
java.lang.String |
toStringMultiline()
Returns a String representation of this object formatted for easier
readability.
|
protected final java.lang.String appId
protected final java.lang.String displayName
public AppLogInfo(java.lang.String appId, java.lang.String displayName)
Use newBuilder
to create instances of this class without
specifying values for all optional fields.
appId
- App unique ID. Might be missing due to historical data gap.displayName
- App display name. Might be missing due to historical
data gap.public AppLogInfo()
The default values for unset fields will be used.
public java.lang.String getAppId()
null
if not present.public java.lang.String getDisplayName()
null
if not present.public static AppLogInfo.Builder newBuilder()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public java.lang.String toString()
toString
in class java.lang.Object
public java.lang.String toStringMultiline()
The returned String may contain newlines.