类 HttpMethod


  • public class HttpMethod
    extends java.lang.Object
    Http method constants.
    从以下版本开始:
    0.8.0
    作者:
    nkorange
    • 字段概要

      字段 
      修饰符和类型 字段 说明
      static java.lang.String DELETE  
      static java.lang.String DELETE_LARGE
      this is only use in nacos, Custom request type, essentially a DELETE request, Mainly used for DELETE request parameters are relatively large, can not be placed on the URL, so it needs to be placed in the body.
      static java.lang.String GET  
      static java.lang.String GET_LARGE
      this is only use in nacos, Custom request type, essentially a GET request, Mainly used for GET request parameters are relatively large,can not be placed on the URL, so it needs to be placed in the body.
      static java.lang.String HEAD  
      static java.lang.String OPTIONS  
      static java.lang.String PATCH  
      static java.lang.String POST  
      static java.lang.String PUT  
      static java.lang.String TRACE  
    • 构造器概要

      构造器 
      构造器 说明
      HttpMethod()  
    • 方法概要

      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 字段详细资料

      • GET

        public static final java.lang.String GET
        另请参阅:
        常量字段值
      • GET_LARGE

        public static final java.lang.String GET_LARGE
        this is only use in nacos, Custom request type, essentially a GET request, Mainly used for GET request parameters are relatively large,can not be placed on the URL, so it needs to be placed in the body.
        另请参阅:
        常量字段值
      • HEAD

        public static final java.lang.String HEAD
        另请参阅:
        常量字段值
      • POST

        public static final java.lang.String POST
        另请参阅:
        常量字段值
      • PUT

        public static final java.lang.String PUT
        另请参阅:
        常量字段值
      • PATCH

        public static final java.lang.String PATCH
        另请参阅:
        常量字段值
      • DELETE

        public static final java.lang.String DELETE
        另请参阅:
        常量字段值
      • DELETE_LARGE

        public static final java.lang.String DELETE_LARGE
        this is only use in nacos, Custom request type, essentially a DELETE request, Mainly used for DELETE request parameters are relatively large, can not be placed on the URL, so it needs to be placed in the body.
        另请参阅:
        常量字段值
      • OPTIONS

        public static final java.lang.String OPTIONS
        另请参阅:
        常量字段值
      • TRACE

        public static final java.lang.String TRACE
        另请参阅:
        常量字段值
    • 构造器详细资料

      • HttpMethod

        public HttpMethod()