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 2 s. c o m /** * @author Sergii Zhuk */ public enum RepeatState { NO_REPEAT("OFF"), REPEAT_CURRENT_TRACK("Current track"), REPEAT_ALL_FILES("All files in list"); // TODO locale private final String label; RepeatState(String label) { this.label = label; } public String getLabel() { return label; } }