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

com.lajospolya.spotifyapiwrapper.enumeration.RepeatState Maven / Gradle / Ivy

Go to download

This project wraps the Spotify public API in order to allow users to intuitively use it

There is a newer version: 3.0.RELEASE
Show newest version
package com.lajospolya.spotifyapiwrapper.enumeration;

import com.google.gson.annotations.SerializedName;

public enum RepeatState
{
    @SerializedName("track")
    TRACK("track"),
    @SerializedName("context")
    CONTEXT("context"),
    @SerializedName("off")
    OFF("off");

    private String state;

    RepeatState(String state)
    {
        this.state = state;
    }

    public String getState()
    {
        return state;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy