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.key; //from ww w.ja v a2 s. co m /** * Created by Tssio on 24/05/2014. */ public enum Key { ATTRIBUTE("attribute"), ENTITY("entity"), MEDIA("media"), TERM("term"), LIMIT("limit"); private String value; Key(String value) { this.value = value; } public String getValue() { return value; } }