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

org.simonscode.telegrammenulibrary.ParseMode Maven / Gradle / Ivy

There is a newer version: 2.0.1
Show newest version
package org.simonscode.telegrammenulibrary;

public enum ParseMode {
    PLAINTEXT(null),
    HTML("html"),
    MARKDOWN("Markdown");

    private final String value;

    ParseMode(String value) {
        this.value = value;
    }

    @Override
    public String toString() {
        return value;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy