All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.refcodes.net.HttpMethod Maven / Gradle / Ivy

Go to download

This artifact provides networking (TCP/IP) related definitions and types being used by REFCODES.ORG networking related functionality and artifacts.

There is a newer version: 3.3.9
Show newest version
package org.refcodes.net;

public enum HttpMethod {

	GET, PUT, POST, DELETE, HEAD, PATCH, TRACE, OPTIONS, CONNECT;
	
	public static HttpMethod fromString( String aHttpMethodText ) {
		for( HttpMethod eMethod: values() ) {
			if ( eMethod.name().equalsIgnoreCase( aHttpMethodText ) ) {
				return eMethod;
			}
		}
		return null;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy