Package com._1c.g5.v8.dt.testing.compare
Enum ICompareMergeResultChecker.EXPECT_RESULT
- java.lang.Object
-
- java.lang.Enum<ICompareMergeResultChecker.EXPECT_RESULT>
-
- com._1c.g5.v8.dt.testing.compare.ICompareMergeResultChecker.EXPECT_RESULT
-
- All Implemented Interfaces:
Serializable
,Comparable<ICompareMergeResultChecker.EXPECT_RESULT>
- Enclosing interface:
- ICompareMergeResultChecker
public static enum ICompareMergeResultChecker.EXPECT_RESULT extends Enum<ICompareMergeResultChecker.EXPECT_RESULT>
Represents expectation result.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXPECTED
The event is expected.NO_MATTER
It is no matter whether the event happened or not.NOT_EXPECTED
The event is not expected.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ICompareMergeResultChecker.EXPECT_RESULT
valueOf(String name)
Returns the enum constant of this type with the specified name.static ICompareMergeResultChecker.EXPECT_RESULT[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
EXPECTED
public static final ICompareMergeResultChecker.EXPECT_RESULT EXPECTED
The event is expected.
-
NOT_EXPECTED
public static final ICompareMergeResultChecker.EXPECT_RESULT NOT_EXPECTED
The event is not expected.
-
NO_MATTER
public static final ICompareMergeResultChecker.EXPECT_RESULT NO_MATTER
It is no matter whether the event happened or not.
-
-
Method Detail
-
values
public static ICompareMergeResultChecker.EXPECT_RESULT[] 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 (ICompareMergeResultChecker.EXPECT_RESULT c : ICompareMergeResultChecker.EXPECT_RESULT.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ICompareMergeResultChecker.EXPECT_RESULT 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
-
-