Package ru.testit.properties
Enum AdapterMode
- java.lang.Object
-
- java.lang.Enum<AdapterMode>
-
- ru.testit.properties.AdapterMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<AdapterMode>
public enum AdapterMode extends java.lang.Enum<AdapterMode>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description NEW_TEST_RUNRUN_ALL_TESTSUSE_FILTER
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetValue()static AdapterModevalueOf(int value)Returns the enum constant of this type with the specified name.static AdapterModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static AdapterMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USE_FILTER
public static final AdapterMode USE_FILTER
-
RUN_ALL_TESTS
public static final AdapterMode RUN_ALL_TESTS
-
NEW_TEST_RUN
public static final AdapterMode NEW_TEST_RUN
-
-
Method Detail
-
values
public static AdapterMode[] 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 (AdapterMode c : AdapterMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AdapterMode 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
-
getValue
public int getValue()
-
valueOf
public static AdapterMode valueOf(int value)
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:
value- 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
-
-