Back to project page Android-iTunes-Client-Library.
The source code is released under:
Apache License
If you think the Android project Android-iTunes-Client-Library 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 com.tassioauad.androiditunesclientlibrary.service.parameter.value; /*from w w w .ja v a 2 s . com*/ /** * Created by Tssio on 21/05/2014. */ public enum AttributeValue implements ParameterValueInterface { TITLE_TERM("titleTerm"), LANGUAGE_TERM("languageTerm"), AUTHOR_TERM("authorTerm"), GENRE_INDEX("genreIndex"), ARTIST_TERM("artistTerm"), RATING_INDEX("ratingIndex"), KEYWORDS_TERM("keywordsTerm"), DESCRIPTION_TERM("descriptionTerm"); private String value; AttributeValue(String value) { this.value = value; } public String getValue() { return value; } }