com.github.jamesnetherton.zulip.client.api.user.EmojiSet Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
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;
}
}