Package com.aim2be.platform.schema
Enum Class SchemaRegistryClient.Kind
- All Implemented Interfaces:
Serializable,Comparable<SchemaRegistryClient.Kind>,Constable
- Enclosing interface:
- SchemaRegistryClient
Implementation kinds. Exposed via
SchemaRegistryClient.kind() for observability and
for downstream callers that need to select wire-format encoders.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionApicurioSchemaRegistryClient— native 8-byte globalId wire format.ConfluentWireCompatSchemaRegistryClient— 4-byte schemaId wire format atop Apicurio.DualSchemaRegistryClient— see its class Javadoc. -
Method Summary
Modifier and TypeMethodDescriptionstatic SchemaRegistryClient.KindReturns the enum constant of this class with the specified name.static SchemaRegistryClient.Kind[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
APICURIO
ApicurioSchemaRegistryClient— native 8-byte globalId wire format. -
CONFLUENT_WIRE_COMPAT
ConfluentWireCompatSchemaRegistryClient— 4-byte schemaId wire format atop Apicurio. -
DUAL
DualSchemaRegistryClient— see its class Javadoc.
-
-
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
-