Class 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
    • Constructor Detail

      • JaxbColumnType

        public JaxbColumnType()
    • 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
      • setValue

        public void setValue​(String value)
        Sets the value of the value property.
        Parameters:
        value - allowed object is String