All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.messenger4j.send.message.quickreply.LocationQuickReply Maven / Gradle / Ivy

// Generated by delombok at Tue May 07 22:31:27 CEST 2019
package com.github.messenger4j.send.message.quickreply;

/**
 * @author Max Grabenhorst
 * @since 1.0.0
 */
public final class LocationQuickReply extends QuickReply {
  private LocationQuickReply() {
    super(ContentType.LOCATION);
  }

  public static LocationQuickReply create() {
    return new LocationQuickReply();
  }

  @java.lang.Override
  @java.lang.SuppressWarnings("all")
  public java.lang.String toString() {
    return "LocationQuickReply(super=" + super.toString() + ")";
  }

  @java.lang.Override
  @java.lang.SuppressWarnings("all")
  public boolean equals(final java.lang.Object o) {
    if (o == this) return true;
    if (!(o instanceof LocationQuickReply)) return false;
    final LocationQuickReply other = (LocationQuickReply) o;
    if (!other.canEqual((java.lang.Object) this)) return false;
    if (!super.equals(o)) return false;
    return true;
  }

  @java.lang.SuppressWarnings("all")
  protected boolean canEqual(final java.lang.Object other) {
    return other instanceof LocationQuickReply;
  }

  @java.lang.Override
  @java.lang.SuppressWarnings("all")
  public int hashCode() {
    final int result = super.hashCode();
    return result;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy