/* * JBoss, Home of Professional Open Source. * See the COPYRIGHT.txt file distributed with this work for information * regarding copyright ownership. Some portions may be licensed * to Red Hat, Inc. under one or more contributor license agreements. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA * 02110-1301 USA. */ package org.teiid.translator.marshallers; import java.util.Arrays; public class G1 { private int e1; private String e2; private float e3; private String[] e4; private String[] e5; public int getE1() { return e1; } public void setE1(int e1) { this.e1 = e1; } public String getE2() { return e2; } public void setE2(String e2) { this.e2 = e2; } public float getE3() { return e3; } public void setE3(float e3) { this.e3 = e3; } public String[] getE4() { return e4; } public void setE4(String[] e4) { this.e4 = e4; } public String[] getE5() { return e5; } public void setE5(String[] e5) { this.e5 = e5; } @Override public String toString() { return "G1 [e1=" + e1 + ", e2=" + e2 + ", e3=" + e3 + ", e4=" + Arrays.toString(e4) + ", e5=" + Arrays.toString(e5) + "]"; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (getClass() != obj.getClass()) return false; G1 other = (G1) obj; if (e1 != other.e1) return false; if (e2 == null) { if (other.e2 != null) return false; } else if (!e2.equals(other.e2)) return false; if (Float.floatToIntBits(e3) != Float.floatToIntBits(other.e3)) return false; if (!Arrays.equals(e4, other.e4)) return false; if (!Arrays.equals(e5, other.e5)) return false; return true; } }