Package adams.gui.flow
Enum FlowMultiPagePane.FlowPanelFilter
- java.lang.Object
-
- java.lang.Enum<FlowMultiPagePane.FlowPanelFilter>
-
- adams.gui.flow.FlowMultiPagePane.FlowPanelFilter
-
- All Implemented Interfaces:
Serializable
,Comparable<FlowMultiPagePane.FlowPanelFilter>
- Enclosing class:
- FlowMultiPagePane
public static enum FlowMultiPagePane.FlowPanelFilter extends Enum<FlowMultiPagePane.FlowPanelFilter>
For filtering panels.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description DEBUG
flow is debug view.FLOW
outermost actor is a Flow actor.HAS_LAST_FLOW
whether the last executed flow is available.RUNNING
flow is running.STOPPING
flow is stopping.SWINGWORKER
whether a swingworker is running.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FlowMultiPagePane.FlowPanelFilter
valueOf(String name)
Returns the enum constant of this type with the specified name.static FlowMultiPagePane.FlowPanelFilter[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RUNNING
public static final FlowMultiPagePane.FlowPanelFilter RUNNING
flow is running.
-
STOPPING
public static final FlowMultiPagePane.FlowPanelFilter STOPPING
flow is stopping.
-
SWINGWORKER
public static final FlowMultiPagePane.FlowPanelFilter SWINGWORKER
whether a swingworker is running.
-
DEBUG
public static final FlowMultiPagePane.FlowPanelFilter DEBUG
flow is debug view.
-
FLOW
public static final FlowMultiPagePane.FlowPanelFilter FLOW
outermost actor is a Flow actor.
-
HAS_LAST_FLOW
public static final FlowMultiPagePane.FlowPanelFilter HAS_LAST_FLOW
whether the last executed flow is available.
-
-
Method Detail
-
values
public static FlowMultiPagePane.FlowPanelFilter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (FlowMultiPagePane.FlowPanelFilter c : FlowMultiPagePane.FlowPanelFilter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FlowMultiPagePane.FlowPanelFilter valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-