Class SchemaBuilder.BytesDefault<R>

Enclosing class:
SchemaBuilder

public static class SchemaBuilder.BytesDefault<R> extends SchemaBuilder.FieldDefault<R,SchemaBuilder.BytesDefault<R>>
Choose whether to use a default value for the field or not.
  • Method Details

    • bytesDefault

      public final SchemaBuilder.FieldAssembler<R> bytesDefault(byte[] defaultVal)
      Completes this field with the default value provided, cannot be null
    • bytesDefault

      public final SchemaBuilder.FieldAssembler<R> bytesDefault(ByteBuffer defaultVal)
      Completes this field with the default value provided, cannot be null
    • bytesDefault

      public final SchemaBuilder.FieldAssembler<R> bytesDefault(String defaultVal)
      Completes this field with the default value provided, cannot be null. The string is interpreted as a byte[], with each character code point value equalling the byte value, as in the Avro spec JSON default.