Package org.nuxeo.runtime.test.runner
Enum FeaturesRunner.Direction
- java.lang.Object
-
- java.lang.Enum<FeaturesRunner.Direction>
-
- org.nuxeo.runtime.test.runner.FeaturesRunner.Direction
-
- All Implemented Interfaces:
Serializable
,Comparable<FeaturesRunner.Direction>
- Enclosing class:
- FeaturesRunner
protected static enum FeaturesRunner.Direction extends Enum<FeaturesRunner.Direction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static FeaturesRunner.Direction
valueOf(String name)
Returns the enum constant of this type with the specified name.static FeaturesRunner.Direction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FORWARD
public static final FeaturesRunner.Direction FORWARD
-
BACKWARD
public static final FeaturesRunner.Direction BACKWARD
-
-
Method Detail
-
values
public static FeaturesRunner.Direction[] 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 (FeaturesRunner.Direction c : FeaturesRunner.Direction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static FeaturesRunner.Direction 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
-
-