public enum DifferenceType extends Enum<DifferenceType>
修飾子とタイプ | メソッドと説明 |
---|---|
static DifferenceType |
of(String op)
json-patch のオペレーションから差分種別を取得します。
|
static DifferenceType |
valueOf(String name)
指定した名前を持つこの型の列挙型定数を返します。
|
static DifferenceType[] |
values()
この列挙型の定数を含む配列を宣言されている順序で返します。
|
public static final DifferenceType ADD
public static final DifferenceType UPDATE
public static final DifferenceType DELETE
public static DifferenceType[] values()
for(DifferenceType c: DifferenceType.values()) System.out.println(c);
public static DifferenceType valueOf(String name)
name
- 返される列挙型定数の名前。IllegalArgumentException
- この列挙型に、指定した名前の定数がない場合NullPointerException
- 引数がnullの場合public static DifferenceType of(String op)
op
- オペレーションCopyright © 2012 NTT DATA INTRAMART CORPORATION