public boolean equals()

in vandelay-serialization-core/src/main/java/com/spotify/api/vandelay/serialization/VandelayObjectMapperFunction.java [45:55]


  public boolean equals(final Object o) {
    if (o == this) {
      return true;
    }
    if (!(o instanceof VandelayObjectMapperFunction)) {
      return false;
    }
    final VandelayObjectMapperFunction other = (VandelayObjectMapperFunction) o;

    return other.toType.equals(this.toType) && other.fromType.equals(this.fromType);
  }