Package eu.simuline.testhelpers
Enum GUIRunner.TreePathIterator.TreePathUpdater
- java.lang.Object
-
- java.lang.Enum<GUIRunner.TreePathIterator.TreePathUpdater>
-
- eu.simuline.testhelpers.GUIRunner.TreePathIterator.TreePathUpdater
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<GUIRunner.TreePathIterator.TreePathUpdater>
- Enclosing class:
- GUIRunner.TreePathIterator
static enum GUIRunner.TreePathIterator.TreePathUpdater extends java.lang.Enum<GUIRunner.TreePathIterator.TreePathUpdater>
Expands the tree along the current path, forGeneric
after incrementing the current path.
-
-
Constructor Summary
Constructors Modifier Constructor Description private
TreePathUpdater()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) abstract void
updatePath(GUIRunner.TreePathIterator treePathIter)
static GUIRunner.TreePathIterator.TreePathUpdater
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static GUIRunner.TreePathIterator.TreePathUpdater[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
First
public static final GUIRunner.TreePathIterator.TreePathUpdater First
-
Generic
public static final GUIRunner.TreePathIterator.TreePathUpdater Generic
-
-
Method Detail
-
values
public static GUIRunner.TreePathIterator.TreePathUpdater[] 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 (GUIRunner.TreePathIterator.TreePathUpdater c : GUIRunner.TreePathIterator.TreePathUpdater.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static GUIRunner.TreePathIterator.TreePathUpdater valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
updatePath
abstract void updatePath(GUIRunner.TreePathIterator treePathIter)
-
-