Enum ConverterType

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

public enum ConverterType
extends Enum<ConverterType>
The type of Converter and HeaderConverter.
  • Enum Constant Details

  • Method Details

    • values

      public static ConverterType[] 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 ConverterType 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
    • withName

      public static ConverterType withName​(String name)
      Find the ConverterType with the given name, using a case-insensitive match.
      Parameters:
      name - the name of the converter type; may be null
      Returns:
      the matching converter type, or null if the supplied name is null or does not match the name of the known types
    • getName

      public String getName()