public enum DisplayMethod extends java.lang.Enum<DisplayMethod>
Enum Constant and Description |
---|
DISABLED
非活性を表す。
|
NODISPLAY
非表示を表す。
|
NORMAL
通常表示を表す。(非表示も非活性も行わない)
|
Modifier and Type | Method and Description |
---|---|
static DisplayMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DisplayMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DisplayMethod NODISPLAY
public static final DisplayMethod DISABLED
public static final DisplayMethod NORMAL
public static DisplayMethod[] values()
for (DisplayMethod c : DisplayMethod.values()) System.out.println(c);
public static DisplayMethod 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