Package org.hibernate.boot.jaxb.mapping
Class JaxbColumnType
java.lang.Object
org.hibernate.boot.jaxb.mapping.JaxbColumnType
- All Implemented Interfaces:
Serializable
See `@org.hibernate.annotations.Type`
Java class for column-type complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="column-type">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="parameters" type="{http://www.hibernate.org/xsd/orm/mapping}configuration-parameter" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
- See Also:
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the value of the parameters property.getValue()Gets the value of the value property.voidSets the value of the value property.
-
Field Details
-
parameters
-
value
-
-
Constructor Details
-
JaxbColumnType
public JaxbColumnType()
-
-
Method Details
-
getParameters
Gets the value of the parameters property.This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the Jakarta XML Binding object. This is why there is not a
setmethod for the parameters property.For example, to add a new item, do as follows:
getParameters().add(newItem);Objects of the following type(s) are allowed in the list
JaxbConfigurationParameter- Returns:
- The value of the parameters property.
-
getValue
Gets the value of the value property.- Returns:
- possible object is
String
-
setValue
Sets the value of the value property.- Parameters:
value- allowed object isString
-