public static enum StatusIndicator.OkPolicy extends java.lang.Enum<StatusIndicator.OkPolicy>
| Enum Constant and Description |
|---|
HIDE
Do not show an indicator for status OK, and keep space reserved in the UI for the indicator.
|
REMOVE
Do not show an indicator for status OK, and temporarilly reclaim space in the UI
so no gap is reserved for the indicator at OK status.
|
SHOW
Show an indicator for status OK.
|
| Modifier and Type | Method and Description |
|---|---|
static StatusIndicator.OkPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatusIndicator.OkPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusIndicator.OkPolicy SHOW
public static final StatusIndicator.OkPolicy HIDE
public static final StatusIndicator.OkPolicy REMOVE
public static StatusIndicator.OkPolicy[] values()
for (StatusIndicator.OkPolicy c : StatusIndicator.OkPolicy.values()) System.out.println(c);
public static StatusIndicator.OkPolicy 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