All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jdash.common.MusicLibraryProvider Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy