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

com.google.api.ads.dfp.axis.v201605.Row Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version
/**
 * Row.java
 *
 * This file was auto-generated from WSDL
 * by the Apache Axis 1.4 Mar 02, 2009 (07:08:06 PST) WSDL2Java emitter.
 */

package com.google.api.ads.dfp.axis.v201605;


/**
 * Each {@link Row} object represents data about one entity in a
 *             {@link ResultSet}.
 */
public class Row  implements java.io.Serializable {
    /* Represents a collection of values belonging to one entity. */
    private com.google.api.ads.dfp.axis.v201605.Value[] values;

    public Row() {
    }

    public Row(
           com.google.api.ads.dfp.axis.v201605.Value[] values) {
           this.values = values;
    }


    /**
     * Gets the values value for this Row.
     * 
     * @return values   * Represents a collection of values belonging to one entity.
     */
    public com.google.api.ads.dfp.axis.v201605.Value[] getValues() {
        return values;
    }


    /**
     * Sets the values value for this Row.
     * 
     * @param values   * Represents a collection of values belonging to one entity.
     */
    public void setValues(com.google.api.ads.dfp.axis.v201605.Value[] values) {
        this.values = values;
    }

    public com.google.api.ads.dfp.axis.v201605.Value getValues(int i) {
        return this.values[i];
    }

    public void setValues(int i, com.google.api.ads.dfp.axis.v201605.Value _value) {
        this.values[i] = _value;
    }

    private java.lang.Object __equalsCalc = null;
    public synchronized boolean equals(java.lang.Object obj) {
        if (!(obj instanceof Row)) return false;
        Row other = (Row) obj;
        if (obj == null) return false;
        if (this == obj) return true;
        if (__equalsCalc != null) {
            return (__equalsCalc == obj);
        }
        __equalsCalc = obj;
        boolean _equals;
        _equals = true && 
            ((this.values==null && other.getValues()==null) || 
             (this.values!=null &&
              java.util.Arrays.equals(this.values, other.getValues())));
        __equalsCalc = null;
        return _equals;
    }

    private boolean __hashCodeCalc = false;
    public synchronized int hashCode() {
        if (__hashCodeCalc) {
            return 0;
        }
        __hashCodeCalc = true;
        int _hashCode = 1;
        if (getValues() != null) {
            for (int i=0;
                 i




© 2015 - 2025 Weber Informatics LLC | Privacy Policy