All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.dummy.avro.DummyTest Maven / Gradle / Ivy

/**
 * Autogenerated by Avro
 * 
 * DO NOT EDIT DIRECTLY
 */
package org.dummy.avro;  
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class DummyTest extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
  public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"DummyTest\",\"namespace\":\"org.dummy.avro\",\"fields\":[{\"name\":\"my_id\",\"type\":{\"type\":\"array\",\"items\":{\"type\":\"record\",\"name\":\"DummyInnerString\",\"fields\":[{\"name\":\"myId\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}]}}}]}");
  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
   private java.util.List my_id;

  /**
   * Default constructor.  Note that this does not initialize fields
   * to their default values from the schema.  If that is desired then
   * one should use newBuilder(). 
   */
  public DummyTest() {}

  /**
   * All-args constructor.
   */
  public DummyTest(java.util.List my_id) {
    this.my_id = my_id;
  }

  public org.apache.avro.Schema getSchema() { return SCHEMA$; }
  // Used by DatumWriter.  Applications should not call. 
  public java.lang.Object get(int field$) {
    switch (field$) {
    case 0: return my_id;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }
  // Used by DatumReader.  Applications should not call. 
  @SuppressWarnings(value="unchecked")
  public void put(int field$, java.lang.Object value$) {
    switch (field$) {
    case 0: my_id = (java.util.List)value$; break;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }

  /**
   * Gets the value of the 'my_id' field.
   */
  public java.util.List getMyId() {
    return my_id;
  }

  /**
   * Sets the value of the 'my_id' field.
   * @param value the value to set.
   */
  public void setMyId(java.util.List value) {
    this.my_id = value;
  }

  /** Creates a new DummyTest RecordBuilder */
  public static org.dummy.avro.DummyTest.Builder newBuilder() {
    return new org.dummy.avro.DummyTest.Builder();
  }
  
  /** Creates a new DummyTest RecordBuilder by copying an existing Builder */
  public static org.dummy.avro.DummyTest.Builder newBuilder(org.dummy.avro.DummyTest.Builder other) {
    return new org.dummy.avro.DummyTest.Builder(other);
  }
  
  /** Creates a new DummyTest RecordBuilder by copying an existing DummyTest instance */
  public static org.dummy.avro.DummyTest.Builder newBuilder(org.dummy.avro.DummyTest other) {
    return new org.dummy.avro.DummyTest.Builder(other);
  }
  
  /**
   * RecordBuilder for DummyTest instances.
   */
  public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
    implements org.apache.avro.data.RecordBuilder {

    private java.util.List my_id;

    /** Creates a new Builder */
    private Builder() {
      super(org.dummy.avro.DummyTest.SCHEMA$);
    }
    
    /** Creates a Builder by copying an existing Builder */
    private Builder(org.dummy.avro.DummyTest.Builder other) {
      super(other);
      if (isValidValue(fields()[0], other.my_id)) {
        this.my_id = data().deepCopy(fields()[0].schema(), other.my_id);
        fieldSetFlags()[0] = true;
      }
    }
    
    /** Creates a Builder by copying an existing DummyTest instance */
    private Builder(org.dummy.avro.DummyTest other) {
            super(org.dummy.avro.DummyTest.SCHEMA$);
      if (isValidValue(fields()[0], other.my_id)) {
        this.my_id = data().deepCopy(fields()[0].schema(), other.my_id);
        fieldSetFlags()[0] = true;
      }
    }

    /** Gets the value of the 'my_id' field */
    public java.util.List getMyId() {
      return my_id;
    }
    
    /** Sets the value of the 'my_id' field */
    public org.dummy.avro.DummyTest.Builder setMyId(java.util.List value) {
      validate(fields()[0], value);
      this.my_id = value;
      fieldSetFlags()[0] = true;
      return this; 
    }
    
    /** Checks whether the 'my_id' field has been set */
    public boolean hasMyId() {
      return fieldSetFlags()[0];
    }
    
    /** Clears the value of the 'my_id' field */
    public org.dummy.avro.DummyTest.Builder clearMyId() {
      my_id = null;
      fieldSetFlags()[0] = false;
      return this;
    }

    @Override
    public DummyTest build() {
      try {
        DummyTest record = new DummyTest();
        record.my_id = fieldSetFlags()[0] ? this.my_id : (java.util.List) defaultValue(fields()[0]);
        return record;
      } catch (Exception e) {
        throw new org.apache.avro.AvroRuntimeException(e);
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy