Enum Class ExactlyOnceSupport

java.lang.Object
java.lang.Enum<ExactlyOnceSupport>
org.apache.kafka.connect.source.ExactlyOnceSupport
All Implemented Interfaces:
Serializable, Comparable<ExactlyOnceSupport>, Constable

public enum ExactlyOnceSupport extends Enum<ExactlyOnceSupport>
An enum to represent the level of support for exactly-once delivery from a source connector.
  • Enum Constant Details

    • SUPPORTED

      public static final ExactlyOnceSupport SUPPORTED
      Signals that a connector supports exactly-once delivery.
    • UNSUPPORTED

      public static final ExactlyOnceSupport UNSUPPORTED
      Signals that a connector does not support exactly-once delivery.
  • Method Details

    • values

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

      public static ExactlyOnceSupport valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null