Package com.helger.regrep.rim
Class ParameterType
- java.lang.Object
-
- com.helger.regrep.rim.ExtensibleObjectType
-
- com.helger.regrep.rim.ParameterType
-
- All Implemented Interfaces:
com.helger.commons.lang.IExplicitlyCloneable,Serializable,Cloneable
@CodingStyleguideUnaware public class ParameterType extends ExtensibleObjectType
Represents a parameter for a parameterized query or, an AttributeDef for an ObjectType ClassificationNode.Java class for ParameterType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ParameterType"> <complexContent> <extension base="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}ExtensibleObjectType"> <sequence> <element name="Name" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}InternationalStringType"/> <element name="Description" type="{urn:oasis:names:tc:ebxml-regrep:xsd:rim:4.0}InternationalStringType" minOccurs="0"/> </sequence> <attribute name="parameterName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="dataType" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="minOccurs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" default="1" /> <attribute name="maxOccurs" type="{http://www.w3.org/2001/XMLSchema}nonNegativeInteger" default="1" /> </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 ParameterType()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 ParameterTypeclone()Created by ph-jaxb-plugin -Xph-cloneable2voidcloneTo(ParameterType ret)This method clones all values fromthisto the passed object.booleanequals(Object o)Created by ph-jaxb-plugin -Xph-equalshashcodeStringgetDataType()Gets the value of the dataType property.StringgetDefaultValue()Gets the value of the defaultValue property.InternationalStringTypegetDescription()Gets the value of the description property.BigIntegergetMaxOccurs()Gets the value of the maxOccurs property.BigIntegergetMinOccurs()Gets the value of the minOccurs property.InternationalStringTypegetName()Gets the value of the name property.StringgetParameterName()Gets the value of the parameterName property.inthashCode()Created by ph-jaxb-plugin -Xph-equalshashcodevoidsetDataType(String value)Sets the value of the dataType property.voidsetDefaultValue(String value)Sets the value of the defaultValue property.voidsetDescription(InternationalStringType value)Sets the value of the description property.voidsetMaxOccurs(BigInteger value)Sets the value of the maxOccurs property.voidsetMinOccurs(BigInteger value)Sets the value of the minOccurs property.voidsetName(InternationalStringType value)Sets the value of the name property.voidsetParameterName(String value)Sets the value of the parameterName 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
-
getName
@Nullable public InternationalStringType getName()
Gets the value of the name property.- Returns:
- possible object is
InternationalStringType
-
setName
public void setName(@Nullable InternationalStringType value)
Sets the value of the name property.- Parameters:
value- allowed object isInternationalStringType
-
getDescription
@Nullable public InternationalStringType getDescription()
Gets the value of the description property.- Returns:
- possible object is
InternationalStringType
-
setDescription
public void setDescription(@Nullable InternationalStringType value)
Sets the value of the description property.- Parameters:
value- allowed object isInternationalStringType
-
getParameterName
@Nullable public String getParameterName()
Gets the value of the parameterName property.- Returns:
- possible object is
String
-
setParameterName
public void setParameterName(@Nullable String value)
Sets the value of the parameterName property.- Parameters:
value- allowed object isString
-
getDataType
@Nullable public String getDataType()
Gets the value of the dataType property.- Returns:
- possible object is
String
-
setDataType
public void setDataType(@Nullable String value)
Sets the value of the dataType property.- Parameters:
value- allowed object isString
-
getDefaultValue
@Nullable public String getDefaultValue()
Gets the value of the defaultValue property.- Returns:
- possible object is
String
-
setDefaultValue
public void setDefaultValue(@Nullable String value)
Sets the value of the defaultValue property.- Parameters:
value- allowed object isString
-
getMinOccurs
@Nullable public BigInteger getMinOccurs()
Gets the value of the minOccurs property.- Returns:
- possible object is
BigInteger
-
setMinOccurs
public void setMinOccurs(@Nullable BigInteger value)
Sets the value of the minOccurs property.- Parameters:
value- allowed object isBigInteger
-
getMaxOccurs
@Nullable public BigInteger getMaxOccurs()
Gets the value of the maxOccurs property.- Returns:
- possible object is
BigInteger
-
setMaxOccurs
public void setMaxOccurs(@Nullable BigInteger value)
Sets the value of the maxOccurs property.- Parameters:
value- allowed object isBigInteger
-
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 ParameterType 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 ParameterType 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.
-
-