public boolean equals()

in spanner-data-validator-java/src/main/java/com/google/migration/dto/session/SpannerColumnType.java [33:42]


  public boolean equals(Object o) {
    if (o == this) {
      return true;
    }
    if (!(o instanceof SpannerColumnType)) {
      return false;
    }
    final SpannerColumnType other = (SpannerColumnType) o;
    return this.name.equals(other.name) && this.isArray.equals(other.isArray);
  }