Back to project page simpleplayer.
The source code is released under:
GNU General Public License
If you think the Android project simpleplayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package org.sergez.splayer.enums; //from w w w . j av a 2s. c o m /** * @author Sergii Zhuk */ public enum ShuffleState { SHUFFLE_OFF("OFF"), SHUFFLE_ON("ON"); // TODO locale private final String label; ShuffleState(String label) { this.label = label; } public String getLabel() { return label; } }