Enum クラスの使用箇所
org.springframework.web.bind.annotation.RequestMethod
パッケージ
説明
リクエストをコントローラーおよびハンドラーメソッドにバインドするためのアノテーションと、リクエストパラメーターをメソッド引数にバインドするためのアノテーション。
RequestCondition
およびさまざまな条件に基づいてリクエストを照合するための実装。 ハンドラーメソッド処理のインフラストラクチャ。
条件に基づいて受信リクエストを照合するための一般的な MVC ロジック。
org.springframework.web.method
パッケージに基づいた、ハンドラーメソッド処理用のサーブレットベースのインフラストラクチャ。org.springframework.web.bind.annotation 内の RequestMethod 使用
修飾子と型メソッド説明static RequestMethod
指定されたメソッド値をRequestMethod
列挙値に解決します。static RequestMethod
RequestMethod.resolve
(HttpMethod httpMethod) 指定されたHttpMethod
をRequestMethod
列挙値に解決します。static RequestMethod
指定された名前でこのクラスの列挙型定数を返します。static RequestMethod[]
RequestMethod.values()
この列挙型クラスの定数を含む配列を、宣言されている順序で返します。org.springframework.web.reactive.result.condition 内の RequestMethod 使用
修飾子と型メソッド説明protected CollectionSE<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
この条件に含まれるすべてのRequestMethods
を返します。修飾子コンストラクター説明RequestMethodsRequestCondition
(RequestMethod... requestMethods) 指定されたリクエストメソッドで新しいインスタンスを作成します。org.springframework.web.reactive.result.method 内の RequestMethod 使用
org.springframework.web.servlet.mvc.condition 内の RequestMethod 使用
修飾子と型メソッド説明protected CollectionSE<RequestMethod>
RequestMethodsRequestCondition.getContent()
RequestMethodsRequestCondition.getMethods()
この条件に含まれるすべてのRequestMethods
を返します。修飾子コンストラクター説明RequestMethodsRequestCondition
(RequestMethod... requestMethods) 指定されたリクエストメソッドで新しいインスタンスを作成します。org.springframework.web.servlet.mvc.method 内の RequestMethod 使用