com.lajospolya.spotifyapiwrapper.enumeration.RepeatState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spotify-api-wrapper Show documentation
Show all versions of spotify-api-wrapper Show documentation
This project wraps the Spotify public API in order to allow users to intuitively use it
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;
}
}