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

parquet.avro.Engine Maven / Gradle / Ivy

There is a newer version: 1.6.0
Show newest version
/**
 * Autogenerated by Avro
 * 
 * DO NOT EDIT DIRECTLY
 */
package parquet.avro;  
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class Engine 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\":\"Engine\",\"namespace\":\"parquet.avro\",\"fields\":[{\"name\":\"type\",\"type\":{\"type\":\"enum\",\"name\":\"EngineType\",\"symbols\":[\"DIESEL\",\"PETROL\",\"ELECTRIC\"]}},{\"name\":\"capacity\",\"type\":\"float\"},{\"name\":\"hasTurboCharger\",\"type\":\"boolean\"}]}");
  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
  @Deprecated public parquet.avro.EngineType type;
  @Deprecated public float capacity;
  @Deprecated public boolean hasTurboCharger;

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

  /**
   * All-args constructor.
   */
  public Engine(parquet.avro.EngineType type, java.lang.Float capacity, java.lang.Boolean hasTurboCharger) {
    this.type = type;
    this.capacity = capacity;
    this.hasTurboCharger = hasTurboCharger;
  }

  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 type;
    case 1: return capacity;
    case 2: return hasTurboCharger;
    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: type = (parquet.avro.EngineType)value$; break;
    case 1: capacity = (java.lang.Float)value$; break;
    case 2: hasTurboCharger = (java.lang.Boolean)value$; break;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }

  /**
   * Gets the value of the 'type' field.
   */
  public parquet.avro.EngineType getType() {
    return type;
  }

  /**
   * Sets the value of the 'type' field.
   * @param value the value to set.
   */
  public void setType(parquet.avro.EngineType value) {
    this.type = value;
  }

  /**
   * Gets the value of the 'capacity' field.
   */
  public java.lang.Float getCapacity() {
    return capacity;
  }

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

  /**
   * Gets the value of the 'hasTurboCharger' field.
   */
  public java.lang.Boolean getHasTurboCharger() {
    return hasTurboCharger;
  }

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

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

    private parquet.avro.EngineType type;
    private float capacity;
    private boolean hasTurboCharger;

    /** Creates a new Builder */
    private Builder() {
      super(parquet.avro.Engine.SCHEMA$);
    }
    
    /** Creates a Builder by copying an existing Builder */
    private Builder(parquet.avro.Engine.Builder other) {
      super(other);
      if (isValidValue(fields()[0], other.type)) {
        this.type = data().deepCopy(fields()[0].schema(), other.type);
        fieldSetFlags()[0] = true;
      }
      if (isValidValue(fields()[1], other.capacity)) {
        this.capacity = data().deepCopy(fields()[1].schema(), other.capacity);
        fieldSetFlags()[1] = true;
      }
      if (isValidValue(fields()[2], other.hasTurboCharger)) {
        this.hasTurboCharger = data().deepCopy(fields()[2].schema(), other.hasTurboCharger);
        fieldSetFlags()[2] = true;
      }
    }
    
    /** Creates a Builder by copying an existing Engine instance */
    private Builder(parquet.avro.Engine other) {
            super(parquet.avro.Engine.SCHEMA$);
      if (isValidValue(fields()[0], other.type)) {
        this.type = data().deepCopy(fields()[0].schema(), other.type);
        fieldSetFlags()[0] = true;
      }
      if (isValidValue(fields()[1], other.capacity)) {
        this.capacity = data().deepCopy(fields()[1].schema(), other.capacity);
        fieldSetFlags()[1] = true;
      }
      if (isValidValue(fields()[2], other.hasTurboCharger)) {
        this.hasTurboCharger = data().deepCopy(fields()[2].schema(), other.hasTurboCharger);
        fieldSetFlags()[2] = true;
      }
    }

    /** Gets the value of the 'type' field */
    public parquet.avro.EngineType getType() {
      return type;
    }
    
    /** Sets the value of the 'type' field */
    public parquet.avro.Engine.Builder setType(parquet.avro.EngineType value) {
      validate(fields()[0], value);
      this.type = value;
      fieldSetFlags()[0] = true;
      return this; 
    }
    
    /** Checks whether the 'type' field has been set */
    public boolean hasType() {
      return fieldSetFlags()[0];
    }
    
    /** Clears the value of the 'type' field */
    public parquet.avro.Engine.Builder clearType() {
      type = null;
      fieldSetFlags()[0] = false;
      return this;
    }

    /** Gets the value of the 'capacity' field */
    public java.lang.Float getCapacity() {
      return capacity;
    }
    
    /** Sets the value of the 'capacity' field */
    public parquet.avro.Engine.Builder setCapacity(float value) {
      validate(fields()[1], value);
      this.capacity = value;
      fieldSetFlags()[1] = true;
      return this; 
    }
    
    /** Checks whether the 'capacity' field has been set */
    public boolean hasCapacity() {
      return fieldSetFlags()[1];
    }
    
    /** Clears the value of the 'capacity' field */
    public parquet.avro.Engine.Builder clearCapacity() {
      fieldSetFlags()[1] = false;
      return this;
    }

    /** Gets the value of the 'hasTurboCharger' field */
    public java.lang.Boolean getHasTurboCharger() {
      return hasTurboCharger;
    }
    
    /** Sets the value of the 'hasTurboCharger' field */
    public parquet.avro.Engine.Builder setHasTurboCharger(boolean value) {
      validate(fields()[2], value);
      this.hasTurboCharger = value;
      fieldSetFlags()[2] = true;
      return this; 
    }
    
    /** Checks whether the 'hasTurboCharger' field has been set */
    public boolean hasHasTurboCharger() {
      return fieldSetFlags()[2];
    }
    
    /** Clears the value of the 'hasTurboCharger' field */
    public parquet.avro.Engine.Builder clearHasTurboCharger() {
      fieldSetFlags()[2] = false;
      return this;
    }

    @Override
    public Engine build() {
      try {
        Engine record = new Engine();
        record.type = fieldSetFlags()[0] ? this.type : (parquet.avro.EngineType) defaultValue(fields()[0]);
        record.capacity = fieldSetFlags()[1] ? this.capacity : (java.lang.Float) defaultValue(fields()[1]);
        record.hasTurboCharger = fieldSetFlags()[2] ? this.hasTurboCharger : (java.lang.Boolean) defaultValue(fields()[2]);
        return record;
      } catch (Exception e) {
        throw new org.apache.avro.AvroRuntimeException(e);
      }
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy