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

org.telegram.telegrambots.api.objects.replykeyboard.buttons.KeyboardRow Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
package org.telegram.telegrambots.api.objects.replykeyboard.buttons;

import java.util.ArrayList;

/**
 * @author Lev Nadeinsky
 * @author Ruben Bermudez
 * @brief Row for ReplyKeyBoardMarkup
 * @date 10 of April of 2016
 */
public class KeyboardRow extends ArrayList {
	private static final long serialVersionUID = 1L;

	public boolean add(String text) {
        return super.add(new KeyboardButton().setText(text));
    }

    public void add(int index, String text) {
        super.add(index, new KeyboardButton().setText(text));
    }

    public boolean contains(String text) {
        return super.contains(new KeyboardButton().setText(text));
    }

    public int lastIndexOf(String text) {
        return super.lastIndexOf(new KeyboardButton().setText(text));
    }

    public int indexOf(String text) {
        return super.indexOf(new KeyboardButton().setText(text));
    }

    public KeyboardButton set(int index, String text) {
        return super.set(index, new KeyboardButton().setText(text));
    }

    public boolean remove(String text) {
        return super.remove(new KeyboardButton().setText(text));
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy