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; // w ww. j a va 2 s. c o m public enum Order { ASC, DESC; @Override public String toString() { return name().toLowerCase(); } }