public boolean equals()

in api/src/main/java/com/google/appengine/api/log/RequestLogs.java [554:595]


  public boolean equals(@Nullable Object obj) {
    if (this == obj) {
      return true;
    }

    if (obj == null || getClass() != obj.getClass()) {
      return false;
    }

    RequestLogs other = (RequestLogs) obj;
    return Objects.equals(appId, other.appId)
        && Objects.equals(moduleId, other.moduleId)
        && Objects.equals(versionId, other.versionId)
        && Objects.equals(requestId, other.requestId)
        && Objects.equals(offset, other.offset)
        && Objects.equals(ip, other.ip)        
        && Objects.equals(nickname, other.nickname)
        && (startTimeUsec == other.startTimeUsec)
        && (endTimeUsec == other.endTimeUsec)
        && (latency == other.latency)
        && (mcycles == other.mcycles)
        && Objects.equals(method, other.method)
        && Objects.equals(resource, other.resource)
        && Objects.equals(httpVersion, other.httpVersion)
        && (status == other.status)
        && (responseSize == other.responseSize)
        && Objects.equals(referrer, other.referrer)
        && Objects.equals(userAgent, other.userAgent)
        && Objects.equals(urlMapEntry, other.urlMapEntry)
        && Objects.equals(combined, other.combined)
        && (apiMcycles == other.apiMcycles)
        && Objects.equals(host, other.host)
        && Objects.equals(taskQueueName, other.taskQueueName)
        && Objects.equals(taskName, other.taskName)
        && (wasLoadingRequest == other.wasLoadingRequest)
        && (pendingTime == other.pendingTime)
        && (replicaIndex == other.replicaIndex)
        && (finished == other.finished)
        && Objects.equals(instanceKey, other.instanceKey)
        && Objects.equals(appLogLines , other.appLogLines)
        && Objects.equals(appEngineRelease, other.appEngineRelease);
  }