Class Xml

java.lang.Object
io.debezium.data.Xml

public class Xml extends Object
A semantic type for an XML string.
Author:
Horia Chiorean
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final String
     
    static final int
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Xml()
     
  • Method Summary

    Modifier and Type
    Method
    Description
    static org.apache.kafka.connect.data.SchemaBuilder
    Returns a SchemaBuilder for an XML field.
    static org.apache.kafka.connect.data.Schema
    Returns a SchemaBuilder for an XML field, with all other default Schema settings.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • Xml

      public Xml()
  • Method Details

    • builder

      public static org.apache.kafka.connect.data.SchemaBuilder builder()
      Returns a SchemaBuilder for an XML field. You can use the resulting SchemaBuilder to set additional schema settings such as required/optional, default value, and documentation.
      Returns:
      the schema builder
    • schema

      public static org.apache.kafka.connect.data.Schema schema()
      Returns a SchemaBuilder for an XML field, with all other default Schema settings.
      Returns:
      the schema
      See Also: