public static enum HandlerListProtector.ProtectMode extends java.lang.Enum<HandlerListProtector.ProtectMode>
| Enum Constant and Description |
|---|
COPY
コピーする。
|
NONE
何もしない。(通常使用しない)
|
UNMODIFIABLE
不変にする。
|
| Modifier and Type | Method and Description |
|---|---|
static HandlerListProtector.ProtectMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HandlerListProtector.ProtectMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
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 - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null