Back to project page octodroid.
The source code is released under:
MIT License
If you think the Android project octodroid 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.rejasupotaro.octodroid.http.params; //ww w . j av a 2 s. c om public enum All { TRUE, FALSE; @Override public String toString() { return name().toLowerCase(); } }