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