Package io.debezium.junit
Enum SkipWhenConnectorUnderTest.Connector
- java.lang.Object
-
- java.lang.Enum<SkipWhenConnectorUnderTest.Connector>
-
- io.debezium.junit.SkipWhenConnectorUnderTest.Connector
-
- All Implemented Interfaces:
Serializable,Comparable<SkipWhenConnectorUnderTest.Connector>
- Enclosing class:
- SkipWhenConnectorUnderTest
public static enum SkipWhenConnectorUnderTest.Connector extends Enum<SkipWhenConnectorUnderTest.Connector>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description SQL_SERVER
-
Constructor Summary
Constructors Modifier Constructor Description privateConnector()
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) abstract booleanisEqualTo(String packageName)static SkipWhenConnectorUnderTest.ConnectorvalueOf(String name)Returns the enum constant of this type with the specified name.static SkipWhenConnectorUnderTest.Connector[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
SQL_SERVER
public static final SkipWhenConnectorUnderTest.Connector SQL_SERVER
-
-
Method Detail
-
values
public static SkipWhenConnectorUnderTest.Connector[] 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 (SkipWhenConnectorUnderTest.Connector c : SkipWhenConnectorUnderTest.Connector.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SkipWhenConnectorUnderTest.Connector 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
-
isEqualTo
abstract boolean isEqualTo(String packageName)
-
-