Package com.helger.regrep.rim
Class PostalAddressType
- java.lang.Object
-
- com.helger.regrep.rim.ExtensibleObjectType
-
- com.helger.regrep.rim.PostalAddressType
-
- All Implemented Interfaces:
com.helger.commons.lang.IExplicitlyCloneable,Serializable,Cloneable
@CodingStyleguideUnaware public class PostalAddressType extends ExtensibleObjectType
Represents a postal address in ebRIM.Java class for PostalAddressType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="PostalAddressType"> <complexContent> <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ExtensibleObjectType"> <attribute name="city" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ShortText" /> <attribute name="country" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ShortText" /> <attribute name="postalCode" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ShortText" /> <attribute name="stateOrProvince" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ShortText" /> <attribute name="street" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ShortText" /> <attribute name="streetNumber" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}String32" /> <attribute name="type" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}objectReferenceType" /> </extension> </complexContent> </complexType>This class was annotated by ph-jaxb-plugin -Xph-annotate
This class contains methods created by ph-jaxb-plugin -Xph-equalshashcode
This class contains methods created by ph-jaxb-plugin -Xph-tostring
This class contains methods created by ph-jaxb-plugin -Xph-cloneable2
This class contains methods created by ph-jaxb-plugin -Xph-value-extender
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PostalAddressType()Default constructor
Note: automatically created by ph-jaxb-plugin -Xph-value-extender
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description PostalAddressTypeclone()Created by ph-jaxb-plugin -Xph-cloneable2voidcloneTo(PostalAddressType ret)This method clones all values fromthisto the passed object.booleanequals(Object o)Created by ph-jaxb-plugin -Xph-equalshashcodeStringgetCity()Gets the value of the city property.StringgetCountry()Gets the value of the country property.StringgetPostalCode()Gets the value of the postalCode property.StringgetStateOrProvince()Gets the value of the stateOrProvince property.StringgetStreet()Gets the value of the street property.StringgetStreetNumber()Gets the value of the streetNumber property.StringgetType()Gets the value of the type property.inthashCode()Created by ph-jaxb-plugin -Xph-equalshashcodevoidsetCity(String value)Sets the value of the city property.voidsetCountry(String value)Sets the value of the country property.voidsetPostalCode(String value)Sets the value of the postalCode property.voidsetStateOrProvince(String value)Sets the value of the stateOrProvince property.voidsetStreet(String value)Sets the value of the street property.voidsetStreetNumber(String value)Sets the value of the streetNumber property.voidsetType(String value)Sets the value of the type property.StringtoString()Created by ph-jaxb-plugin -Xph-tostring-
Methods inherited from class com.helger.regrep.rim.ExtensibleObjectType
addSlot, cloneTo, getSlot, getSlotAtIndex, getSlotCount, hasNoSlotEntries, hasSlotEntries, setSlot
-
-
-
-
Method Detail
-
getCity
@Nullable public String getCity()
Gets the value of the city property.- Returns:
- possible object is
String
-
setCity
public void setCity(@Nullable String value)
Sets the value of the city property.- Parameters:
value- allowed object isString
-
getCountry
@Nullable public String getCountry()
Gets the value of the country property.- Returns:
- possible object is
String
-
setCountry
public void setCountry(@Nullable String value)
Sets the value of the country property.- Parameters:
value- allowed object isString
-
getPostalCode
@Nullable public String getPostalCode()
Gets the value of the postalCode property.- Returns:
- possible object is
String
-
setPostalCode
public void setPostalCode(@Nullable String value)
Sets the value of the postalCode property.- Parameters:
value- allowed object isString
-
getStateOrProvince
@Nullable public String getStateOrProvince()
Gets the value of the stateOrProvince property.- Returns:
- possible object is
String
-
setStateOrProvince
public void setStateOrProvince(@Nullable String value)
Sets the value of the stateOrProvince property.- Parameters:
value- allowed object isString
-
getStreet
@Nullable public String getStreet()
Gets the value of the street property.- Returns:
- possible object is
String
-
setStreet
public void setStreet(@Nullable String value)
Sets the value of the street property.- Parameters:
value- allowed object isString
-
getStreetNumber
@Nullable public String getStreetNumber()
Gets the value of the streetNumber property.- Returns:
- possible object is
String
-
setStreetNumber
public void setStreetNumber(@Nullable String value)
Sets the value of the streetNumber property.- Parameters:
value- allowed object isString
-
getType
@Nullable public String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(@Nullable String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
equals
public boolean equals(Object o)
Created by ph-jaxb-plugin -Xph-equalshashcode- Overrides:
equalsin classExtensibleObjectType
-
hashCode
public int hashCode()
Created by ph-jaxb-plugin -Xph-equalshashcode- Overrides:
hashCodein classExtensibleObjectType
-
toString
public String toString()
Created by ph-jaxb-plugin -Xph-tostring- Overrides:
toStringin classExtensibleObjectType
-
cloneTo
public void cloneTo(@Nonnull PostalAddressType ret)
This method clones all values fromthisto the passed object. All data in the parameter object is overwritten!Created by ph-jaxb-plugin -Xph-cloneable2- Parameters:
ret- The target object to clone to. May not benull.
-
clone
@Nonnull @ReturnsMutableCopy public PostalAddressType clone()
Created by ph-jaxb-plugin -Xph-cloneable2- Specified by:
clonein interfacecom.helger.commons.lang.IExplicitlyCloneable- Specified by:
clonein classExtensibleObjectType- Returns:
- The cloned object. Never
null.
-
-