This project has retired. For details please refer to its Attic page.
Source code
001/**
002 * Autogenerated by Avro
003 *
004 * DO NOT EDIT DIRECTLY
005 */
006package org.apache.reef.io.network.naming.avro;
007
008import org.apache.avro.specific.SpecificData;
009
010@SuppressWarnings("all")
011@org.apache.avro.specific.AvroGenerated
012public class AvroNamingAssignment extends org.apache.avro.specific.SpecificRecordBase implements org.apache.avro.specific.SpecificRecord {
013  private static final long serialVersionUID = 3459813109353196668L;
014  public static final org.apache.avro.Schema SCHEMA$ = new org.apache.avro.Schema.Parser().parse("{\"type\":\"record\",\"name\":\"AvroNamingAssignment\",\"namespace\":\"org.apache.reef.io.network.naming.avro\",\"fields\":[{\"name\":\"id\",\"type\":\"string\"},{\"name\":\"host\",\"type\":\"string\"},{\"name\":\"port\",\"type\":\"int\"}]}");
015  public static org.apache.avro.Schema getClassSchema() { return SCHEMA$; }
016  @Deprecated public java.lang.CharSequence id;
017  @Deprecated public java.lang.CharSequence host;
018  @Deprecated public int port;
019
020  /**
021   * Default constructor.  Note that this does not initialize fields
022   * to their default values from the schema.  If that is desired then
023   * one should use <code>newBuilder()</code>.
024   */
025  public AvroNamingAssignment() {}
026
027  /**
028   * All-args constructor.
029   * @param id The new value for id
030   * @param host The new value for host
031   * @param port The new value for port
032   */
033  public AvroNamingAssignment(java.lang.CharSequence id, java.lang.CharSequence host, java.lang.Integer port) {
034    this.id = id;
035    this.host = host;
036    this.port = port;
037  }
038
039  public org.apache.avro.Schema getSchema() { return SCHEMA$; }
040  // Used by DatumWriter.  Applications should not call.
041  public java.lang.Object get(int field$) {
042    switch (field$) {
043    case 0: return id;
044    case 1: return host;
045    case 2: return port;
046    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
047    }
048  }
049
050  // Used by DatumReader.  Applications should not call.
051  @SuppressWarnings(value="unchecked")
052  public void put(int field$, java.lang.Object value$) {
053    switch (field$) {
054    case 0: id = (java.lang.CharSequence)value$; break;
055    case 1: host = (java.lang.CharSequence)value$; break;
056    case 2: port = (java.lang.Integer)value$; break;
057    default: throw new org.apache.avro.AvroRuntimeException("Bad index");
058    }
059  }
060
061  /**
062   * Gets the value of the 'id' field.
063   * @return The value of the 'id' field.
064   */
065  public java.lang.CharSequence getId() {
066    return id;
067  }
068
069  /**
070   * Sets the value of the 'id' field.
071   * @param value the value to set.
072   */
073  public void setId(java.lang.CharSequence value) {
074    this.id = value;
075  }
076
077  /**
078   * Gets the value of the 'host' field.
079   * @return The value of the 'host' field.
080   */
081  public java.lang.CharSequence getHost() {
082    return host;
083  }
084
085  /**
086   * Sets the value of the 'host' field.
087   * @param value the value to set.
088   */
089  public void setHost(java.lang.CharSequence value) {
090    this.host = value;
091  }
092
093  /**
094   * Gets the value of the 'port' field.
095   * @return The value of the 'port' field.
096   */
097  public java.lang.Integer getPort() {
098    return port;
099  }
100
101  /**
102   * Sets the value of the 'port' field.
103   * @param value the value to set.
104   */
105  public void setPort(java.lang.Integer value) {
106    this.port = value;
107  }
108
109  /**
110   * Creates a new AvroNamingAssignment RecordBuilder.
111   * @return A new AvroNamingAssignment RecordBuilder
112   */
113  public static org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder newBuilder() {
114    return new org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder();
115  }
116
117  /**
118   * Creates a new AvroNamingAssignment RecordBuilder by copying an existing Builder.
119   * @param other The existing builder to copy.
120   * @return A new AvroNamingAssignment RecordBuilder
121   */
122  public static org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder newBuilder(org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder other) {
123    return new org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder(other);
124  }
125
126  /**
127   * Creates a new AvroNamingAssignment RecordBuilder by copying an existing AvroNamingAssignment instance.
128   * @param other The existing instance to copy.
129   * @return A new AvroNamingAssignment RecordBuilder
130   */
131  public static org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder newBuilder(org.apache.reef.io.network.naming.avro.AvroNamingAssignment other) {
132    return new org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder(other);
133  }
134
135  /**
136   * RecordBuilder for AvroNamingAssignment instances.
137   */
138  public static class Builder extends org.apache.avro.specific.SpecificRecordBuilderBase<AvroNamingAssignment>
139    implements org.apache.avro.data.RecordBuilder<AvroNamingAssignment> {
140
141    private java.lang.CharSequence id;
142    private java.lang.CharSequence host;
143    private int port;
144
145    /** Creates a new Builder */
146    private Builder() {
147      super(SCHEMA$);
148    }
149
150    /**
151     * Creates a Builder by copying an existing Builder.
152     * @param other The existing Builder to copy.
153     */
154    private Builder(org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder other) {
155      super(other);
156      if (isValidValue(fields()[0], other.id)) {
157        this.id = data().deepCopy(fields()[0].schema(), other.id);
158        fieldSetFlags()[0] = true;
159      }
160      if (isValidValue(fields()[1], other.host)) {
161        this.host = data().deepCopy(fields()[1].schema(), other.host);
162        fieldSetFlags()[1] = true;
163      }
164      if (isValidValue(fields()[2], other.port)) {
165        this.port = data().deepCopy(fields()[2].schema(), other.port);
166        fieldSetFlags()[2] = true;
167      }
168    }
169
170    /**
171     * Creates a Builder by copying an existing AvroNamingAssignment instance
172     * @param other The existing instance to copy.
173     */
174    private Builder(org.apache.reef.io.network.naming.avro.AvroNamingAssignment other) {
175            super(SCHEMA$);
176      if (isValidValue(fields()[0], other.id)) {
177        this.id = data().deepCopy(fields()[0].schema(), other.id);
178        fieldSetFlags()[0] = true;
179      }
180      if (isValidValue(fields()[1], other.host)) {
181        this.host = data().deepCopy(fields()[1].schema(), other.host);
182        fieldSetFlags()[1] = true;
183      }
184      if (isValidValue(fields()[2], other.port)) {
185        this.port = data().deepCopy(fields()[2].schema(), other.port);
186        fieldSetFlags()[2] = true;
187      }
188    }
189
190    /**
191      * Gets the value of the 'id' field.
192      * @return The value.
193      */
194    public java.lang.CharSequence getId() {
195      return id;
196    }
197
198    /**
199      * Sets the value of the 'id' field.
200      * @param value The value of 'id'.
201      * @return This builder.
202      */
203    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder setId(java.lang.CharSequence value) {
204      validate(fields()[0], value);
205      this.id = value;
206      fieldSetFlags()[0] = true;
207      return this;
208    }
209
210    /**
211      * Checks whether the 'id' field has been set.
212      * @return True if the 'id' field has been set, false otherwise.
213      */
214    public boolean hasId() {
215      return fieldSetFlags()[0];
216    }
217
218
219    /**
220      * Clears the value of the 'id' field.
221      * @return This builder.
222      */
223    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder clearId() {
224      id = null;
225      fieldSetFlags()[0] = false;
226      return this;
227    }
228
229    /**
230      * Gets the value of the 'host' field.
231      * @return The value.
232      */
233    public java.lang.CharSequence getHost() {
234      return host;
235    }
236
237    /**
238      * Sets the value of the 'host' field.
239      * @param value The value of 'host'.
240      * @return This builder.
241      */
242    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder setHost(java.lang.CharSequence value) {
243      validate(fields()[1], value);
244      this.host = value;
245      fieldSetFlags()[1] = true;
246      return this;
247    }
248
249    /**
250      * Checks whether the 'host' field has been set.
251      * @return True if the 'host' field has been set, false otherwise.
252      */
253    public boolean hasHost() {
254      return fieldSetFlags()[1];
255    }
256
257
258    /**
259      * Clears the value of the 'host' field.
260      * @return This builder.
261      */
262    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder clearHost() {
263      host = null;
264      fieldSetFlags()[1] = false;
265      return this;
266    }
267
268    /**
269      * Gets the value of the 'port' field.
270      * @return The value.
271      */
272    public java.lang.Integer getPort() {
273      return port;
274    }
275
276    /**
277      * Sets the value of the 'port' field.
278      * @param value The value of 'port'.
279      * @return This builder.
280      */
281    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder setPort(int value) {
282      validate(fields()[2], value);
283      this.port = value;
284      fieldSetFlags()[2] = true;
285      return this;
286    }
287
288    /**
289      * Checks whether the 'port' field has been set.
290      * @return True if the 'port' field has been set, false otherwise.
291      */
292    public boolean hasPort() {
293      return fieldSetFlags()[2];
294    }
295
296
297    /**
298      * Clears the value of the 'port' field.
299      * @return This builder.
300      */
301    public org.apache.reef.io.network.naming.avro.AvroNamingAssignment.Builder clearPort() {
302      fieldSetFlags()[2] = false;
303      return this;
304    }
305
306    @Override
307    public AvroNamingAssignment build() {
308      try {
309        AvroNamingAssignment record = new AvroNamingAssignment();
310        record.id = fieldSetFlags()[0] ? this.id : (java.lang.CharSequence) defaultValue(fields()[0]);
311        record.host = fieldSetFlags()[1] ? this.host : (java.lang.CharSequence) defaultValue(fields()[1]);
312        record.port = fieldSetFlags()[2] ? this.port : (java.lang.Integer) defaultValue(fields()[2]);
313        return record;
314      } catch (Exception e) {
315        throw new org.apache.avro.AvroRuntimeException(e);
316      }
317    }
318  }
319
320  private static final org.apache.avro.io.DatumWriter
321    WRITER$ = new org.apache.avro.specific.SpecificDatumWriter(SCHEMA$);
322
323  @Override public void writeExternal(java.io.ObjectOutput out)
324    throws java.io.IOException {
325    WRITER$.write(this, SpecificData.getEncoder(out));
326  }
327
328  private static final org.apache.avro.io.DatumReader
329    READER$ = new org.apache.avro.specific.SpecificDatumReader(SCHEMA$);
330
331  @Override public void readExternal(java.io.ObjectInput in)
332    throws java.io.IOException {
333    READER$.read(this, SpecificData.getDecoder(in));
334  }
335
336}