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.streamhub; /*from w ww . jav a 2 s . c om*/ public enum LFSFlag { SPAM, OFFENSIVE, DISAGREE, OFF_TOPIC; public int value() { switch (this) { case SPAM: return 0; case OFFENSIVE: return 1; case DISAGREE: return 2; case OFF_TOPIC: return 3; default: return 4; } } }