Package org.hibernate.boot.jaxb.mapping
Class JaxbColumnType
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbColumnType
-
- All Implemented Interfaces:
Serializable
public class JaxbColumnType extends Object implements 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:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected List<JaxbConfigurationParameter>
parameters
protected String
value
-
Constructor Summary
Constructors Constructor Description JaxbColumnType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JaxbConfigurationParameter>
getParameters()
Gets the value of the parameters property.String
getValue()
Gets the value of the value property.void
setValue(String value)
Sets the value of the value property.
-
-
-
Field Detail
-
parameters
protected List<JaxbConfigurationParameter> parameters
-
value
protected String value
-
-
Method Detail
-
getParameters
public List<JaxbConfigurationParameter> 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
set
method 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
public String getValue()
Gets the value of the value property.- Returns:
- possible object is
String
-
-