jdash.common.MusicLibraryProvider Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdash-common Show documentation
Show all versions of jdash-common Show documentation
Common types and utilities when dealing with Geometry Dash data
The newest version!
package jdash.common;
import java.util.Objects;
/**
* Enumerates the possible song providers for the music library.
*/
public enum MusicLibraryProvider {
OTHER,
NCS;
public static MusicLibraryProvider parse(String value) {
return Objects.equals(value, "1") ? NCS : OTHER;
}
}