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

com.windowsazure.samples.internal.web.HttpMethod Maven / Gradle / Ivy

package com.windowsazure.samples.internal.web;

public enum HttpMethod {
	DELETE,
	GET,
	HEAD,
	MERGE,
	POST,
	PUT;
	
	public boolean hasContent() {
		switch (this) {
		case MERGE:
		case POST:
		case PUT:
			return true;
		default:
			return false;
		}
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy