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; }