public boolean equals()

in openapi/openapi-client/src/main/java/org/apache/celeborn/rest/v1/model/ThreadStack.java [454:475]


  public boolean equals(Object o) {
    if (this == o) {
      return true;
    }
    if (o == null || getClass() != o.getClass()) {
      return false;
    }
    ThreadStack threadStack = (ThreadStack) o;
    return Objects.equals(this.threadId, threadStack.threadId) &&
        Objects.equals(this.threadName, threadStack.threadName) &&
        Objects.equals(this.threadState, threadStack.threadState) &&
        Objects.equals(this.stackTrace, threadStack.stackTrace) &&
        Objects.equals(this.blockedByThreadId, threadStack.blockedByThreadId) &&
        Objects.equals(this.blockedByLock, threadStack.blockedByLock) &&
        Objects.equals(this.holdingLocks, threadStack.holdingLocks) &&
        Objects.equals(this.synchronizers, threadStack.synchronizers) &&
        Objects.equals(this.monitors, threadStack.monitors) &&
        Objects.equals(this.lockName, threadStack.lockName) &&
        Objects.equals(this.lockOwnerName, threadStack.lockOwnerName) &&
        Objects.equals(this.suspended, threadStack.suspended) &&
        Objects.equals(this.inNative, threadStack.inNative);
  }