BotState.PLAYING

Here are the examples of the java api BotState.PLAYING taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

19 Source : NoteBotModule.java
with GNU General Public License v3.0
from seppukudevelopment

@Override
public String getMetaData() {
    if (this.state.getValue().equals(BotState.PLAYING)) {
        return this.state.getValue().name() + " " + this.getNotePlayer().getCurrentSongName();
    }
    return this.state.getValue().name();
}