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

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

/**
 * Autogenerated by Avro
 * 
 * DO NOT EDIT DIRECTLY
 */
package org.dummy.avro;  
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class DummyInnerString 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\":\"DummyInnerString\",\"namespace\":\"org.dummy.avro\",\"fields\":[{\"name\":\"myId\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}]}");
  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
   private java.lang.String myId;

  /**
   * 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 DummyInnerString() {}

  /**
   * All-args constructor.
   */
  public DummyInnerString(java.lang.String myId) {
    this.myId = myId;
  }

  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 myId;
    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: myId = (java.lang.String)value$; break;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }

  /**
   * Gets the value of the 'myId' field.
   */
  public java.lang.String getMyId() {
    return myId;
  }

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

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

    private java.lang.String myId;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy