/* * Geotoolkit - An Open Source Java GIS Toolkit * http://www.geotoolkit.org * * (C) 2008 - 2009, Geomatys * * 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. */ package org.geotoolkit.ebrim.xml.v300; import java.util.Objects; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * TelephoneNumber is the mapping of the same named interface in ebRIM. * * <p>Java class for TelephoneNumberType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="TelephoneNumberType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="areaCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String8" /> * <attribute name="countryCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String8" /> * <attribute name="extension" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String8" /> * <attribute name="number" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String16" /> * <attribute name="phoneType" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:3.0}String32" /> * </restriction> * </complexContent> * </complexType> * </pre> * * * @module */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TelephoneNumberType") public class TelephoneNumberType { @XmlAttribute private String areaCode; @XmlAttribute private String countryCode; @XmlAttribute private String extension; @XmlAttribute private String number; @XmlAttribute private String phoneType; /** * Gets the value of the areaCode property. */ public String getAreaCode() { return areaCode; } /** * Sets the value of the areaCode property. */ public void setAreaCode(final String value) { this.areaCode = value; } /** * Gets the value of the countryCode property. */ public String getCountryCode() { return countryCode; } /** * Sets the value of the countryCode property. */ public void setCountryCode(final String value) { this.countryCode = value; } /** * Gets the value of the extension property. */ public String getExtension() { return extension; } /** * Sets the value of the extension property. */ public void setExtension(final String value) { this.extension = value; } /** * Gets the value of the number property. */ public String getNumber() { return number; } /** * Sets the value of the number property. */ public void setNumber(final String value) { this.number = value; } /** * Gets the value of the phoneType property. */ public String getPhoneType() { return phoneType; } /** * Sets the value of the phoneType property. */ public void setPhoneType(final String value) { this.phoneType = value; } @Override public String toString() { final StringBuilder s = new StringBuilder(); s.append('[').append(this.getClass().getSimpleName()).append(']').append('\n'); if (areaCode != null) { s.append("areaCode:").append(areaCode).append('\n'); } if (countryCode != null) { s.append("countryCode:").append(countryCode).append('\n'); } if (extension != null) { s.append("extension:").append(extension).append('\n'); } if (number != null) { s.append("number:").append(number).append('\n'); } if (phoneType != null) { s.append("phoneType:").append(phoneType).append('\n'); } return s.toString(); } @Override public boolean equals(final Object obj) { if (obj == this) { return true; } if (obj instanceof TelephoneNumberType) { final TelephoneNumberType that = (TelephoneNumberType) obj; return Objects.equals(this.areaCode, that.areaCode) && Objects.equals(this.countryCode, that.countryCode) && Objects.equals(this.extension, that.extension) && Objects.equals(this.number, that.number) && Objects.equals(this.phoneType, that.phoneType); } return false; } @Override public int hashCode() { int hash = 3; hash = 59 * hash + (this.areaCode != null ? this.areaCode.hashCode() : 0); hash = 59 * hash + (this.countryCode != null ? this.countryCode.hashCode() : 0); hash = 59 * hash + (this.extension != null ? this.extension.hashCode() : 0); hash = 59 * hash + (this.number != null ? this.number.hashCode() : 0); hash = 59 * hash + (this.phoneType != null ? this.phoneType.hashCode() : 0); return hash; } }