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

com.uber.hoodie.avro.model.HoodieCompactionPlan Maven / Gradle / Ivy

There is a newer version: 0.4.7
Show newest version
/**
 * Autogenerated by Avro
 * 
 * DO NOT EDIT DIRECTLY
 */
package com.uber.hoodie.avro.model;  
@SuppressWarnings("all")
@org.apache.avro.specific.AvroGenerated
public class HoodieCompactionPlan 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\":\"HoodieCompactionPlan\",\"namespace\":\"com.uber.hoodie.avro.model\",\"fields\":[{\"name\":\"operations\",\"type\":[\"null\",{\"type\":\"array\",\"items\":{\"type\":\"record\",\"name\":\"HoodieCompactionOperation\",\"fields\":[{\"name\":\"baseInstantTime\",\"type\":[\"null\",{\"type\":\"string\",\"avro.java.string\":\"String\"}]},{\"name\":\"deltaFilePaths\",\"type\":[\"null\",{\"type\":\"array\",\"items\":{\"type\":\"string\",\"avro.java.string\":\"String\"}}],\"default\":null},{\"name\":\"dataFilePath\",\"type\":[\"null\",{\"type\":\"string\",\"avro.java.string\":\"String\"}],\"default\":null},{\"name\":\"fileId\",\"type\":[\"null\",{\"type\":\"string\",\"avro.java.string\":\"String\"}]},{\"name\":\"partitionPath\",\"type\":[\"null\",{\"type\":\"string\",\"avro.java.string\":\"String\"}],\"default\":null},{\"name\":\"metrics\",\"type\":[\"null\",{\"type\":\"map\",\"values\":\"double\",\"avro.java.string\":\"String\"}],\"default\":null}]}}],\"default\":null},{\"name\":\"extraMetadata\",\"type\":[\"null\",{\"type\":\"map\",\"values\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"avro.java.string\":\"String\"}],\"default\":null}]}");
  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
  @Deprecated public java.util.List operations;
  @Deprecated public java.util.Map extraMetadata;

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

  /**
   * All-args constructor.
   */
  public HoodieCompactionPlan(java.util.List operations, java.util.Map extraMetadata) {
    this.operations = operations;
    this.extraMetadata = extraMetadata;
  }

  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 operations;
    case 1: return extraMetadata;
    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: operations = (java.util.List)value$; break;
    case 1: extraMetadata = (java.util.Map)value$; break;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }

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

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

  /**
   * Gets the value of the 'extraMetadata' field.
   */
  public java.util.Map getExtraMetadata() {
    return extraMetadata;
  }

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

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

    private java.util.List operations;
    private java.util.Map extraMetadata;

    /** Creates a new Builder */
    private Builder() {
      super(com.uber.hoodie.avro.model.HoodieCompactionPlan.SCHEMA$);
    }
    
    /** Creates a Builder by copying an existing Builder */
    private Builder(com.uber.hoodie.avro.model.HoodieCompactionPlan.Builder other) {
      super(other);
      if (isValidValue(fields()[0], other.operations)) {
        this.operations = data().deepCopy(fields()[0].schema(), other.operations);
        fieldSetFlags()[0] = true;
      }
      if (isValidValue(fields()[1], other.extraMetadata)) {
        this.extraMetadata = data().deepCopy(fields()[1].schema(), other.extraMetadata);
        fieldSetFlags()[1] = true;
      }
    }
    
    /** Creates a Builder by copying an existing HoodieCompactionPlan instance */
    private Builder(com.uber.hoodie.avro.model.HoodieCompactionPlan other) {
            super(com.uber.hoodie.avro.model.HoodieCompactionPlan.SCHEMA$);
      if (isValidValue(fields()[0], other.operations)) {
        this.operations = data().deepCopy(fields()[0].schema(), other.operations);
        fieldSetFlags()[0] = true;
      }
      if (isValidValue(fields()[1], other.extraMetadata)) {
        this.extraMetadata = data().deepCopy(fields()[1].schema(), other.extraMetadata);
        fieldSetFlags()[1] = true;
      }
    }

    /** Gets the value of the 'operations' field */
    public java.util.List getOperations() {
      return operations;
    }
    
    /** Sets the value of the 'operations' field */
    public com.uber.hoodie.avro.model.HoodieCompactionPlan.Builder setOperations(java.util.List value) {
      validate(fields()[0], value);
      this.operations = value;
      fieldSetFlags()[0] = true;
      return this; 
    }
    
    /** Checks whether the 'operations' field has been set */
    public boolean hasOperations() {
      return fieldSetFlags()[0];
    }
    
    /** Clears the value of the 'operations' field */
    public com.uber.hoodie.avro.model.HoodieCompactionPlan.Builder clearOperations() {
      operations = null;
      fieldSetFlags()[0] = false;
      return this;
    }

    /** Gets the value of the 'extraMetadata' field */
    public java.util.Map getExtraMetadata() {
      return extraMetadata;
    }
    
    /** Sets the value of the 'extraMetadata' field */
    public com.uber.hoodie.avro.model.HoodieCompactionPlan.Builder setExtraMetadata(java.util.Map value) {
      validate(fields()[1], value);
      this.extraMetadata = value;
      fieldSetFlags()[1] = true;
      return this; 
    }
    
    /** Checks whether the 'extraMetadata' field has been set */
    public boolean hasExtraMetadata() {
      return fieldSetFlags()[1];
    }
    
    /** Clears the value of the 'extraMetadata' field */
    public com.uber.hoodie.avro.model.HoodieCompactionPlan.Builder clearExtraMetadata() {
      extraMetadata = null;
      fieldSetFlags()[1] = false;
      return this;
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy