java.lang.Object
java.lang.Enum<SinkType>
io.debezium.connector.jdbc.junit.jupiter.SinkType
All Implemented Interfaces:
Serializable, Comparable<SinkType>

public enum SinkType extends Enum<SinkType>
An enumeration of all the possible sink database types supported in the test pipeline matrix.
Author:
Chris Cranford
  • Enum Constant Details

    • MYSQL

      public static final SinkType MYSQL
    • POSTGRES

      public static final SinkType POSTGRES
    • SQLSERVER

      public static final SinkType SQLSERVER
    • ORACLE

      public static final SinkType ORACLE
    • DB2

      public static final SinkType DB2
  • Field Details

    • value

      private final String value
  • Constructor Details

    • SinkType

      private SinkType(String value)
  • Method Details

    • values

      public static SinkType[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static SinkType 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
    • getValue

      public String getValue()
    • is

      public boolean is(SinkType... types)
    • parse

      public static SinkType parse(String value)