Back to project page StreamHub-Android-Reviews-App.
The source code is released under:
MIT License
If you think the Android project StreamHub-Android-Reviews-App 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 livefyre.models; /*ww w .j a va2 s. c o m*/ public enum ReviewStatus { DELETED, NOT_DELETED; public int getValue() { switch (this) { case DELETED: return 0; case NOT_DELETED: return 1; default: return 1; } } }