protected static enum AbstractInsight.State extends java.lang.Enum<AbstractInsight.State>
| Enum Constant and Description |
|---|
ACTIVE
Private constant indicating the insight state is active.
|
INACTIVE
Private constant indicating the insight state is inactive.
|
| Modifier and Type | Method and Description |
|---|---|
static AbstractInsight.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AbstractInsight.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractInsight.State INACTIVE
public static final AbstractInsight.State ACTIVE
public static AbstractInsight.State[] values()
for (AbstractInsight.State c : AbstractInsight.State.values()) System.out.println(c);
public static AbstractInsight.State 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