public enum ControlDisplayMode extends java.lang.Enum<ControlDisplayMode>
Enum Constant and Description |
---|
Hidden
This parameter is expected to be hidden from user
|
Normal
No special handling
|
Prompt
This parameter should always be shown to user.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDescription() |
java.lang.String |
getValue() |
static ControlDisplayMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ControlDisplayMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ControlDisplayMode Normal
public static final ControlDisplayMode Hidden
public static final ControlDisplayMode Prompt
public static ControlDisplayMode[] values()
for (ControlDisplayMode c : ControlDisplayMode.values()) System.out.println(c);
public static ControlDisplayMode 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@NotNull public java.lang.String getDescription()
@NotNull public java.lang.String getValue()