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 SummaryEnum Constants Enum Constant Description EXPECTEDThe event is expected.NO_MATTERIt is no matter whether the event happened or not.NOT_EXPECTEDThe event is not expected.
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static ICompareMergeResultChecker.EXPECT_RESULTvalueOf(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- 
EXPECTEDpublic static final ICompareMergeResultChecker.EXPECT_RESULT EXPECTED The event is expected.
 - 
NOT_EXPECTEDpublic static final ICompareMergeResultChecker.EXPECT_RESULT NOT_EXPECTED The event is not expected.
 - 
NO_MATTERpublic static final ICompareMergeResultChecker.EXPECT_RESULT NO_MATTER It is no matter whether the event happened or not.
 
- 
 - 
Method Detail- 
valuespublic 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
 
 - 
valueOfpublic 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 name
- NullPointerException- if the argument is null
 
 
- 
 
-