Package org.apache.kafka.connect.storage
Enum Class ConverterType
- All Implemented Interfaces:
Serializable
,Comparable<ConverterType>
,Constable
The type of
Converter
and HeaderConverter
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetName()
static ConverterType
Returns the enum constant of this class with the specified name.static ConverterType[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.static ConverterType
Find the ConverterType with the given name, using a case-insensitive match.
-
Enum Constant Details
-
KEY
-
VALUE
-
HEADER
-
-
Method Details
-
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
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 nameNullPointerException
- if the argument is null
-
withName
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
-