Serializable, Comparable<Curl.Method>public static enum Curl.Method extends Enum<Curl.Method>
| 修飾子とタイプ | メソッド | 説明 |
|---|---|---|
static Curl.Method |
valueOf(String name) |
指定した名前を持つこの型の列挙型定数を返します。
|
static Curl.Method[] |
values() |
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final Curl.Method GET
public static final Curl.Method POST
public static final Curl.Method PUT
public static final Curl.Method DELETE
public static Curl.Method[] values()
for (Curl.Method c : Curl.Method.values()) System.out.println(c);
public static Curl.Method valueOf(String name)
name - 返される列挙型定数の名前。IllegalArgumentException - この列挙型に、指定した名前の定数がない場合NullPointerException - 引数がnullの場合Copyright © 2011–2018 CodeLibs Project. All rights reserved.