
com.fedex.rate.stub.FlatbedTrailerDetail Maven / Gradle / Ivy
The newest version!
/**
* FlatbedTrailerDetail.java
*
* This file was auto-generated from WSDL
* by the Apache Axis 1.4 Apr 22, 2006 (06:55:48 PDT) WSDL2Java emitter.
*/
package com.fedex.rate.stub;
/**
* Specifies the optional features/characteristics requested for a
* Freight shipment utilizing a flatbed trailer.
*/
public class FlatbedTrailerDetail implements java.io.Serializable {
private com.fedex.rate.stub.FlatbedTrailerOption[] options;
public FlatbedTrailerDetail() {
}
public FlatbedTrailerDetail(
com.fedex.rate.stub.FlatbedTrailerOption[] options) {
this.options = options;
}
/**
* Gets the options value for this FlatbedTrailerDetail.
*
* @return options
*/
public com.fedex.rate.stub.FlatbedTrailerOption[] getOptions() {
return options;
}
/**
* Sets the options value for this FlatbedTrailerDetail.
*
* @param options
*/
public void setOptions(com.fedex.rate.stub.FlatbedTrailerOption[] options) {
this.options = options;
}
public com.fedex.rate.stub.FlatbedTrailerOption getOptions(int i) {
return this.options[i];
}
public void setOptions(int i, com.fedex.rate.stub.FlatbedTrailerOption _value) {
this.options[i] = _value;
}
private java.lang.Object __equalsCalc = null;
public synchronized boolean equals(java.lang.Object obj) {
if (!(obj instanceof FlatbedTrailerDetail)) return false;
FlatbedTrailerDetail other = (FlatbedTrailerDetail) obj;
if (obj == null) return false;
if (this == obj) return true;
if (__equalsCalc != null) {
return (__equalsCalc == obj);
}
__equalsCalc = obj;
boolean _equals;
_equals = true &&
((this.options==null && other.getOptions()==null) ||
(this.options!=null &&
java.util.Arrays.equals(this.options, other.getOptions())));
__equalsCalc = null;
return _equals;
}
private boolean __hashCodeCalc = false;
public synchronized int hashCode() {
if (__hashCodeCalc) {
return 0;
}
__hashCodeCalc = true;
int _hashCode = 1;
if (getOptions() != null) {
for (int i=0;
i
© 2015 - 2025 Weber Informatics LLC | Privacy Policy