
com.google.api.ads.dfp.axis.v201508.SetValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dfp-axis Show documentation
Show all versions of dfp-axis Show documentation
Ad Manager specific Axis components.
/**
* SetValue.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.v201508;
/**
* Contains a set of {@link Value Values}. May not contain duplicates.
*/
public class SetValue extends com.google.api.ads.dfp.axis.v201508.Value implements java.io.Serializable {
/* The values. They must all be the same type of {@code Value}
* and not contain duplicates. */
private com.google.api.ads.dfp.axis.v201508.Value[] values;
public SetValue() {
}
public SetValue(
com.google.api.ads.dfp.axis.v201508.Value[] values) {
this.values = values;
}
/**
* Gets the values value for this SetValue.
*
* @return values * The values. They must all be the same type of {@code Value}
* and not contain duplicates.
*/
public com.google.api.ads.dfp.axis.v201508.Value[] getValues() {
return values;
}
/**
* Sets the values value for this SetValue.
*
* @param values * The values. They must all be the same type of {@code Value}
* and not contain duplicates.
*/
public void setValues(com.google.api.ads.dfp.axis.v201508.Value[] values) {
this.values = values;
}
public com.google.api.ads.dfp.axis.v201508.Value getValues(int i) {
return this.values[i];
}
public void setValues(int i, com.google.api.ads.dfp.axis.v201508.Value _value) {
this.values[i] = _value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof SetValue)) return false;
SetValue other = (SetValue) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = super.equals(obj) &&
((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 = super.hashCode();
if (getValues() != null) {
for (int i=0;
i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy