public enum MethodType extends java.lang.Enum<MethodType>
修飾子とタイプ | フィールドと説明 |
---|---|
static MethodType[] |
METHOD_ALL |
修飾子とタイプ | メソッドと説明 |
---|---|
static MethodType |
valueOf(java.lang.String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static MethodType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final MethodType GET
public static final MethodType POST
public static final MethodType PUT
public static final MethodType DELETE
public static MethodType[] METHOD_ALL
public static MethodType[] values()
for(MethodType c: MethodType.values()) System.out.println(c);
public static MethodType valueOf(java.lang.String name)
name
- 返される列挙型定数の名前。java.lang.IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合java.lang.NullPointerException
- 引数がnullの場合