Back to project page xing-android-sdk.
The source code is released under:
Apache License
If you think the Android project xing-android-sdk 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 de.hdodenhof.xingapi.internal.util; //from www.j a v a2s. c om import org.scribe.model.Verb; public class HTTPUtils { public static Verb scribeVerbFromString(String verb) { switch (verb) { case "GET": return Verb.GET; case "POST": return Verb.POST; case "PUT": return Verb.PUT; case "DELETE": return Verb.DELETE; } return null; } }