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

com.github.jamesnetherton.zulip.client.api.user.EmojiSet Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.user;

public enum EmojiSet {
    GOOGLE,
    GOOGLE_BLOB,
    TWITTER,
    TEXT;

    @Override
    public String toString() {
        String name = this.name().toLowerCase();
        if (this.equals(GOOGLE_BLOB)) {
            return name.replace('_', '-');
        }
        return name;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy