Enum DeserializationExceptionHandler

java.lang.Object
java.lang.Enum<DeserializationExceptionHandler>
org.springframework.cloud.stream.binder.kafka.streams.DeserializationExceptionHandler
All Implemented Interfaces:
Serializable, Comparable<DeserializationExceptionHandler>, java.lang.constant.Constable

public enum DeserializationExceptionHandler extends Enum<DeserializationExceptionHandler>
Enumeration for various DeserializationExceptionHandler types.
Since:
3.0.0
Author:
Soby Chacko
  • Enum Constant Details

    • logAndContinue

      public static final DeserializationExceptionHandler logAndContinue
      Deserialization error handler with log and continue. See LogAndContinueExceptionHandler
    • logAndFail

      public static final DeserializationExceptionHandler logAndFail
      Deserialization error handler with log and fail. See LogAndFailExceptionHandler
    • sendToDlq

      public static final DeserializationExceptionHandler sendToDlq
      Deserialization error handler with DLQ send. See RecoveringDeserializationExceptionHandler
    • skipAndContinue

      public static final DeserializationExceptionHandler skipAndContinue
      Deserialization error handler that silently skips the error and continue.
  • Method Details

    • values

      public static DeserializationExceptionHandler[] 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 DeserializationExceptionHandler 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