com.pengrad.telegrambot.model.chatbackground.BackgroundFill Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-telegram-bot-api Show documentation
Show all versions of java-telegram-bot-api Show documentation
Java API for Telegram Bot API
package com.pengrad.telegrambot.model.chatbackground;
import java.util.Objects;
public abstract class BackgroundFill {
private final String type;
public BackgroundFill(String type) {
this.type = type;
}
public String type() {
return type;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
BackgroundFill that = (BackgroundFill) o;
return Objects.equals(type, that.type);
}
@Override
public int hashCode() {
return Objects.hash(type);
}
@Override
public String toString() {
return "BackgroundFill{" +
"type='" + type + '\'' +
'}';
}
}