001package com.box.sdk.http; 002 003/** 004 * HTTP method constants. 005 */ 006public enum HttpMethod { 007 /** 008 * HTTP GET method. 009 */ 010 GET, 011 012 /** 013 * HTTP HEAD method. 014 */ 015 HEAD, 016 017 /** 018 * HTTP POST method. 019 */ 020 POST, 021 022 /** 023 * HTTP PUT method. 024 */ 025 PUT, 026 027 /** 028 * HTTP PATCH method. 029 */ 030 PATCH, 031 032 /** 033 * HTTP DELETE method. 034 */ 035 DELETE, 036 037 /** 038 * HTTP OPTIONS method. 039 */ 040 OPTIONS, 041 042 /** 043 * HTTP TRACE method. 044 */ 045 TRACE; 046}