Package adams.gui.flow.tree
Enum TreeOperations.ActorDialog
- java.lang.Object
-
- java.lang.Enum<TreeOperations.ActorDialog>
-
- adams.gui.flow.tree.TreeOperations.ActorDialog
-
- All Implemented Interfaces:
Serializable
,Comparable<TreeOperations.ActorDialog>
- Enclosing class:
- TreeOperations
public static enum TreeOperations.ActorDialog extends Enum<TreeOperations.ActorDialog>
Enumeration for actor dialogs.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description GOE
GOE_FORCED
GOE_FORCED_NO_TREE
GOE_NO_TREE
TREE
TREE_NO_GOE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static TreeOperations.ActorDialog
valueOf(String name)
Returns the enum constant of this type with the specified name.static TreeOperations.ActorDialog[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GOE
public static final TreeOperations.ActorDialog GOE
-
GOE_NO_TREE
public static final TreeOperations.ActorDialog GOE_NO_TREE
-
GOE_FORCED
public static final TreeOperations.ActorDialog GOE_FORCED
-
GOE_FORCED_NO_TREE
public static final TreeOperations.ActorDialog GOE_FORCED_NO_TREE
-
TREE
public static final TreeOperations.ActorDialog TREE
-
TREE_NO_GOE
public static final TreeOperations.ActorDialog TREE_NO_GOE
-
-
Method Detail
-
values
public static TreeOperations.ActorDialog[] 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 (TreeOperations.ActorDialog c : TreeOperations.ActorDialog.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static TreeOperations.ActorDialog 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
-
-