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

wavefront.report.ReportPoint Maven / Gradle / Ivy

The newest version!
/**
 * Autogenerated by Avro
 *
 * DO NOT EDIT DIRECTLY
 */
package wavefront.report;

import org.apache.avro.generic.GenericArray;
import org.apache.avro.specific.SpecificData;
import org.apache.avro.util.Utf8;
import org.apache.avro.message.BinaryMessageEncoder;
import org.apache.avro.message.BinaryMessageDecoder;
import org.apache.avro.message.SchemaStore;

@org.apache.avro.specific.AvroGenerated
public class ReportPoint extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
  private static final long serialVersionUID = 8879844592109358687L;
  public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"ReportPoint\",\"namespace\":\"wavefront.report\",\"fields\":[{\"name\":\"metric\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"}},{\"name\":\"timestamp\",\"type\":\"long\"},{\"name\":\"value\",\"type\":[\"double\",\"long\",{\"type\":\"string\",\"avro.java.string\":\"String\"},{\"type\":\"record\",\"name\":\"Histogram\",\"fields\":[{\"name\":\"duration\",\"type\":\"int\"},{\"name\":\"type\",\"type\":{\"type\":\"enum\",\"name\":\"HistogramType\",\"symbols\":[\"TDIGEST\",\"DOUBLE_TRUNCATE\"]}},{\"name\":\"bins\",\"type\":{\"type\":\"array\",\"items\":\"double\"}},{\"name\":\"counts\",\"type\":{\"type\":\"array\",\"items\":\"int\"}}]}]},{\"name\":\"host\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"default\":\"unknown\"},{\"name\":\"table\",\"type\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"default\":\"tsdb\"},{\"name\":\"annotations\",\"type\":{\"type\":\"map\",\"values\":{\"type\":\"string\",\"avro.java.string\":\"String\"},\"avro.java.string\":\"String\"},\"default\":{}}]}");
  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }

  private static SpecificData MODEL$ = new SpecificData();

  private static final BinaryMessageEncoder ENCODER =
      new BinaryMessageEncoder(MODEL$, SCHEMA$);

  private static final BinaryMessageDecoder DECODER =
      new BinaryMessageDecoder(MODEL$, SCHEMA$);

  /**
   * Return the BinaryMessageEncoder instance used by this class.
   * @return the message encoder used by this class
   */
  public static BinaryMessageEncoder getEncoder() {
    return ENCODER;
  }

  /**
   * Return the BinaryMessageDecoder instance used by this class.
   * @return the message decoder used by this class
   */
  public static BinaryMessageDecoder getDecoder() {
    return DECODER;
  }

  /**
   * Create a new BinaryMessageDecoder instance for this class that uses the specified {@link SchemaStore}.
   * @param resolver a {@link SchemaStore} used to find schemas by fingerprint
   * @return a BinaryMessageDecoder instance for this class backed by the given SchemaStore
   */
  public static BinaryMessageDecoder createDecoder(SchemaStore resolver) {
    return new BinaryMessageDecoder(MODEL$, SCHEMA$, resolver);
  }

  /**
   * Serializes this ReportPoint to a ByteBuffer.
   * @return a buffer holding the serialized data for this instance
   * @throws java.io.IOException if this instance could not be serialized
   */
  public java.nio.ByteBuffer toByteBuffer() throws java.io.IOException {
    return ENCODER.encode(this);
  }

  /**
   * Deserializes a ReportPoint from a ByteBuffer.
   * @param b a byte buffer holding serialized data for an instance of this class
   * @return a ReportPoint instance decoded from the given buffer
   * @throws java.io.IOException if the given bytes could not be deserialized into an instance of this class
   */
  public static ReportPoint fromByteBuffer(
      java.nio.ByteBuffer b) throws java.io.IOException {
    return DECODER.decode(b);
  }

  @Deprecated public java.lang.String metric;
  @Deprecated public long timestamp;
  @Deprecated public java.lang.Object value;
  @Deprecated public java.lang.String host;
  @Deprecated public java.lang.String table;
  @Deprecated public java.util.Map annotations;

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

  /**
   * All-args constructor.
   * @param metric The new value for metric
   * @param timestamp The new value for timestamp
   * @param value The new value for value
   * @param host The new value for host
   * @param table The new value for table
   * @param annotations The new value for annotations
   */
  public ReportPoint(java.lang.String metric, java.lang.Long timestamp, java.lang.Object value, java.lang.String host, java.lang.String table, java.util.Map annotations) {
    this.metric = metric;
    this.timestamp = timestamp;
    this.value = value;
    this.host = host;
    this.table = table;
    this.annotations = annotations;
  }

  public org.apache.avro.specific.SpecificData getSpecificData() { return MODEL$; }
  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 metric;
    case 1: return timestamp;
    case 2: return value;
    case 3: return host;
    case 4: return table;
    case 5: return annotations;
    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: metric = value$ != null ? value$.toString() : null; break;
    case 1: timestamp = (java.lang.Long)value$; break;
    case 2: value = value$; break;
    case 3: host = value$ != null ? value$.toString() : null; break;
    case 4: table = value$ != null ? value$.toString() : null; break;
    case 5: annotations = (java.util.Map)value$; break;
    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
    }
  }

  /**
   * Gets the value of the 'metric' field.
   * @return The value of the 'metric' field.
   */
  public java.lang.String getMetric() {
    return metric;
  }


  /**
   * Sets the value of the 'metric' field.
   * @param value the value to set.
   */
      public void setMetric(java.lang.String value) {
    this.metric = value;
  }
  
  /**
   * Gets the value of the 'timestamp' field.
   * @return The value of the 'timestamp' field.
   */
  public long getTimestamp() {
    return timestamp;
  }


  /**
   * Sets the value of the 'timestamp' field.
   * @param value the value to set.
   */
      public void setTimestamp(long value) {
    this.timestamp = value;
  }
  
  /**
   * Gets the value of the 'value' field.
   * @return The value of the 'value' field.
   */
  public java.lang.Object getValue() {
    return value;
  }


  /**
   * Sets the value of the 'value' field.
   * @param value the value to set.
   */
                    public void setValue(java.lang.Double value) {
        this.value = value;
        }
                public void setValue(java.lang.Long value) {
        this.value = value;
        }
                public void setValue(java.lang.String value) {
        this.value = value;
        }
                public void setValue(wavefront.report.Histogram value) {
        this.value = value;
        }
            
  /**
   * Gets the value of the 'host' field.
   * @return The value of the 'host' field.
   */
  public java.lang.String getHost() {
    return host;
  }


  /**
   * Sets the value of the 'host' field.
   * @param value the value to set.
   */
      public void setHost(java.lang.String value) {
    this.host = value;
  }
  
  /**
   * Gets the value of the 'table' field.
   * @return The value of the 'table' field.
   */
  public java.lang.String getTable() {
    return table;
  }


  /**
   * Sets the value of the 'table' field.
   * @param value the value to set.
   */
      public void setTable(java.lang.String value) {
    this.table = value;
  }
  
  /**
   * Gets the value of the 'annotations' field.
   * @return The value of the 'annotations' field.
   */
  public java.util.Map getAnnotations() {
    return annotations;
  }


  /**
   * Sets the value of the 'annotations' field.
   * @param value the value to set.
   */
      public void setAnnotations(java.util.Map value) {
    this.annotations = value;
  }
  
  /**
   * Creates a new ReportPoint RecordBuilder.
   * @return A new ReportPoint RecordBuilder
   */
  public static wavefront.report.ReportPoint.Builder newBuilder() {
    return new wavefront.report.ReportPoint.Builder();
  }

  /**
   * Creates a new ReportPoint RecordBuilder by copying an existing Builder.
   * @param other The existing builder to copy.
   * @return A new ReportPoint RecordBuilder
   */
  public static wavefront.report.ReportPoint.Builder newBuilder(wavefront.report.ReportPoint.Builder other) {
    if (other == null) {
      return new wavefront.report.ReportPoint.Builder();
    } else {
      return new wavefront.report.ReportPoint.Builder(other);
    }
  }

  /**
   * Creates a new ReportPoint RecordBuilder by copying an existing ReportPoint instance.
   * @param other The existing instance to copy.
   * @return A new ReportPoint RecordBuilder
   */
  public static wavefront.report.ReportPoint.Builder newBuilder(wavefront.report.ReportPoint other) {
    if (other == null) {
      return new wavefront.report.ReportPoint.Builder();
    } else {
      return new wavefront.report.ReportPoint.Builder(other);
    }
  }

  /**
   * RecordBuilder for ReportPoint instances.
   */
  @org.apache.avro.specific.AvroGenerated
  public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase
    implements org.apache.avro.data.RecordBuilder {

    private java.lang.String metric;
    private long timestamp;
    private java.lang.Object value;
    private java.lang.String host;
    private java.lang.String table;
    private java.util.Map annotations;

    /** Creates a new Builder */
    private Builder() {
      super(SCHEMA$);
    }

    /**
     * Creates a Builder by copying an existing Builder.
     * @param other The existing Builder to copy.
     */
    private Builder(wavefront.report.ReportPoint.Builder other) {
      super(other);
      if (isValidValue(fields()[0], other.metric)) {
        this.metric = data().deepCopy(fields()[0].schema(), other.metric);
        fieldSetFlags()[0] = other.fieldSetFlags()[0];
      }
      if (isValidValue(fields()[1], other.timestamp)) {
        this.timestamp = data().deepCopy(fields()[1].schema(), other.timestamp);
        fieldSetFlags()[1] = other.fieldSetFlags()[1];
      }
      if (isValidValue(fields()[2], other.value)) {
        this.value = data().deepCopy(fields()[2].schema(), other.value);
        fieldSetFlags()[2] = other.fieldSetFlags()[2];
      }
      if (isValidValue(fields()[3], other.host)) {
        this.host = data().deepCopy(fields()[3].schema(), other.host);
        fieldSetFlags()[3] = other.fieldSetFlags()[3];
      }
      if (isValidValue(fields()[4], other.table)) {
        this.table = data().deepCopy(fields()[4].schema(), other.table);
        fieldSetFlags()[4] = other.fieldSetFlags()[4];
      }
      if (isValidValue(fields()[5], other.annotations)) {
        this.annotations = data().deepCopy(fields()[5].schema(), other.annotations);
        fieldSetFlags()[5] = other.fieldSetFlags()[5];
      }
    }

    /**
     * Creates a Builder by copying an existing ReportPoint instance
     * @param other The existing instance to copy.
     */
    private Builder(wavefront.report.ReportPoint other) {
      super(SCHEMA$);
      if (isValidValue(fields()[0], other.metric)) {
        this.metric = data().deepCopy(fields()[0].schema(), other.metric);
        fieldSetFlags()[0] = true;
      }
      if (isValidValue(fields()[1], other.timestamp)) {
        this.timestamp = data().deepCopy(fields()[1].schema(), other.timestamp);
        fieldSetFlags()[1] = true;
      }
      if (isValidValue(fields()[2], other.value)) {
        this.value = data().deepCopy(fields()[2].schema(), other.value);
        fieldSetFlags()[2] = true;
      }
      if (isValidValue(fields()[3], other.host)) {
        this.host = data().deepCopy(fields()[3].schema(), other.host);
        fieldSetFlags()[3] = true;
      }
      if (isValidValue(fields()[4], other.table)) {
        this.table = data().deepCopy(fields()[4].schema(), other.table);
        fieldSetFlags()[4] = true;
      }
      if (isValidValue(fields()[5], other.annotations)) {
        this.annotations = data().deepCopy(fields()[5].schema(), other.annotations);
        fieldSetFlags()[5] = true;
      }
    }

    /**
      * Gets the value of the 'metric' field.
      * @return The value.
      */
    public java.lang.String getMetric() {
      return metric;
    }
    
    /**
      * Sets the value of the 'metric' field.
      * @param value The value of 'metric'.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder setMetric(java.lang.String value) {
      validate(fields()[0], value);
      this.metric = value;
      fieldSetFlags()[0] = true;
      return this;
    }
    
    
    /**
      * Checks whether the 'metric' field has been set.
      * @return True if the 'metric' field has been set, false otherwise.
      */
    public boolean hasMetric() {
      return fieldSetFlags()[0];
    }


    /**
      * Clears the value of the 'metric' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearMetric() {
      metric = null;
      fieldSetFlags()[0] = false;
      return this;
    }

    /**
      * Gets the value of the 'timestamp' field.
      * @return The value.
      */
    public long getTimestamp() {
      return timestamp;
    }
    
    /**
      * Sets the value of the 'timestamp' field.
      * @param value The value of 'timestamp'.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder setTimestamp(long value) {
      validate(fields()[1], value);
      this.timestamp = value;
      fieldSetFlags()[1] = true;
      return this;
    }
    
    
    /**
      * Checks whether the 'timestamp' field has been set.
      * @return True if the 'timestamp' field has been set, false otherwise.
      */
    public boolean hasTimestamp() {
      return fieldSetFlags()[1];
    }


    /**
      * Clears the value of the 'timestamp' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearTimestamp() {
      fieldSetFlags()[1] = false;
      return this;
    }

    /**
      * Gets the value of the 'value' field.
      * @return The value.
      */
    public java.lang.Object getValue() {
      return value;
    }
            
        /**
        * Sets the value of the 'value' field.
                    * @param value The value of 'value'.
        * @return This builder.
        */
        public wavefront.report.ReportPoint.Builder setValue(double value) {
        validate(fields()[2], value);
                    this.value = value;
        fieldSetFlags()[2] = true;
        return this;
        }
        
        /**
        * Sets the value of the 'value' field.
                    * @param value The value of 'value'.
        * @return This builder.
        */
        public wavefront.report.ReportPoint.Builder setValue(long value) {
        validate(fields()[2], value);
                    this.value = value;
        fieldSetFlags()[2] = true;
        return this;
        }
        
        /**
        * Sets the value of the 'value' field.
                    * @param value The value of 'value'.
        * @return This builder.
        */
        public wavefront.report.ReportPoint.Builder setValue(java.lang.String value) {
        validate(fields()[2], value);
                    this.value = value;
        fieldSetFlags()[2] = true;
        return this;
        }
        
        /**
        * Sets the value of the 'value' field.
                    * @param value The value of 'value'.
        * @return This builder.
        */
        public wavefront.report.ReportPoint.Builder setValue(wavefront.report.Histogram value) {
        validate(fields()[2], value);
                    this.value = value;
        fieldSetFlags()[2] = true;
        return this;
        }
            
    
    /**
      * Checks whether the 'value' field has been set.
      * @return True if the 'value' field has been set, false otherwise.
      */
    public boolean hasValue() {
      return fieldSetFlags()[2];
    }


    /**
      * Clears the value of the 'value' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearValue() {
      value = null;
      fieldSetFlags()[2] = false;
      return this;
    }

    /**
      * Gets the value of the 'host' field.
      * @return The value.
      */
    public java.lang.String getHost() {
      return host;
    }
    
    /**
      * Sets the value of the 'host' field.
      * @param value The value of 'host'.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder setHost(java.lang.String value) {
      validate(fields()[3], value);
      this.host = value;
      fieldSetFlags()[3] = true;
      return this;
    }
    
    
    /**
      * Checks whether the 'host' field has been set.
      * @return True if the 'host' field has been set, false otherwise.
      */
    public boolean hasHost() {
      return fieldSetFlags()[3];
    }


    /**
      * Clears the value of the 'host' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearHost() {
      host = null;
      fieldSetFlags()[3] = false;
      return this;
    }

    /**
      * Gets the value of the 'table' field.
      * @return The value.
      */
    public java.lang.String getTable() {
      return table;
    }
    
    /**
      * Sets the value of the 'table' field.
      * @param value The value of 'table'.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder setTable(java.lang.String value) {
      validate(fields()[4], value);
      this.table = value;
      fieldSetFlags()[4] = true;
      return this;
    }
    
    
    /**
      * Checks whether the 'table' field has been set.
      * @return True if the 'table' field has been set, false otherwise.
      */
    public boolean hasTable() {
      return fieldSetFlags()[4];
    }


    /**
      * Clears the value of the 'table' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearTable() {
      table = null;
      fieldSetFlags()[4] = false;
      return this;
    }

    /**
      * Gets the value of the 'annotations' field.
      * @return The value.
      */
    public java.util.Map getAnnotations() {
      return annotations;
    }
    
    /**
      * Sets the value of the 'annotations' field.
      * @param value The value of 'annotations'.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder setAnnotations(java.util.Map value) {
      validate(fields()[5], value);
      this.annotations = value;
      fieldSetFlags()[5] = true;
      return this;
    }
    
    
    /**
      * Checks whether the 'annotations' field has been set.
      * @return True if the 'annotations' field has been set, false otherwise.
      */
    public boolean hasAnnotations() {
      return fieldSetFlags()[5];
    }


    /**
      * Clears the value of the 'annotations' field.
      * @return This builder.
      */
    public wavefront.report.ReportPoint.Builder clearAnnotations() {
      annotations = null;
      fieldSetFlags()[5] = false;
      return this;
    }

    @Override
    @SuppressWarnings("unchecked")
    public ReportPoint build() {
      try {
        ReportPoint record = new ReportPoint();
        record.metric = fieldSetFlags()[0] ? this.metric : (java.lang.String) defaultValue(fields()[0]);
        record.timestamp = fieldSetFlags()[1] ? this.timestamp : (java.lang.Long) defaultValue(fields()[1]);
        record.value = fieldSetFlags()[2] ? this.value :  defaultValue(fields()[2]);
        record.host = fieldSetFlags()[3] ? this.host : (java.lang.String) defaultValue(fields()[3]);
        record.table = fieldSetFlags()[4] ? this.table : (java.lang.String) defaultValue(fields()[4]);
        record.annotations = fieldSetFlags()[5] ? this.annotations : (java.util.Map) defaultValue(fields()[5]);
        return record;
      } catch (org.apache.avro.AvroMissingFieldException e) {
        throw e;
      } catch (java.lang.Exception e) {
        throw new org.apache.avro.AvroRuntimeException(e);
      }
    }
  }

  @SuppressWarnings("unchecked")
  private static final org.apache.avro.io.DatumWriter
    WRITER$ = (org.apache.avro.io.DatumWriter)MODEL$.createDatumWriter(SCHEMA$);

  @Override public void writeExternal(java.io.ObjectOutput out)
    throws java.io.IOException {
    WRITER$.write(this, SpecificData.getEncoder(out));
  }

  @SuppressWarnings("unchecked")
  private static final org.apache.avro.io.DatumReader
    READER$ = (org.apache.avro.io.DatumReader)MODEL$.createDatumReader(SCHEMA$);

  @Override public void readExternal(java.io.ObjectInput in)
    throws java.io.IOException {
    READER$.read(this, SpecificData.getDecoder(in));
  }

}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy