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

com.paypal.base.rest.HttpMethod Maven / Gradle / Ivy

There is a newer version: 1.14.0
Show newest version
package com.paypal.base.rest;

/**
 * HttpMethod enums used for HTTP method verbs
 */
public enum HttpMethod {

	// Get Http Method
	GET,
	
	// Post Http Method
	POST, 
	
	// Patch Http Method
	PATCH, 
	
	// Put Http Method
	PUT, 
	
	// Delete Http Method
	DELETE;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy