All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.boot.jaxb.mapping.spi.JaxbElementCollection Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.1 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2021.12.16 at 08:34:01 AM UTC 
//


package org.hibernate.boot.jaxb.mapping.spi;

import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import javax.persistence.AccessType;
import javax.persistence.EnumType;
import javax.persistence.FetchType;
import javax.persistence.TemporalType;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 
 * 
 *                 @Target({METHOD, FIELD}) @Retention(RUNTIME)
 *                 public @interface ElementCollection {
 *                 Class targetClass() default void.class;
 *                 FetchType fetch() default LAZY;
 *                 }
 * 
 *             
 * 
 * 

Java class for element-collection complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="element-collection">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <choice>
 *           <element name="order-by" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}order-by" minOccurs="0"/>
 *           <element name="order-column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}order-column" minOccurs="0"/>
 *         </choice>
 *         <choice>
 *           <element name="map-key" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}map-key" minOccurs="0"/>
 *           <sequence>
 *             <element name="map-key-class" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}map-key-class" minOccurs="0"/>
 *             <choice>
 *               <element name="map-key-temporal" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}temporal" minOccurs="0"/>
 *               <element name="map-key-enumerated" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}enumerated" minOccurs="0"/>
 *               <sequence>
 *                 <element name="map-key-attribute-override" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}attribute-override" maxOccurs="unbounded" minOccurs="0"/>
 *                 <element name="map-key-convert" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}convert" maxOccurs="unbounded" minOccurs="0"/>
 *               </sequence>
 *             </choice>
 *             <choice>
 *               <element name="map-key-column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}map-key-column" minOccurs="0"/>
 *               <sequence>
 *                 <element name="map-key-join-column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}map-key-join-column" maxOccurs="unbounded" minOccurs="0"/>
 *                 <element name="map-key-foreign-key" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}foreign-key" minOccurs="0"/>
 *               </sequence>
 *             </choice>
 *           </sequence>
 *         </choice>
 *         <choice>
 *           <sequence>
 *             <element name="column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}column" minOccurs="0"/>
 *             <choice>
 *               <element name="temporal" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}temporal" minOccurs="0"/>
 *               <element name="enumerated" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}enumerated" minOccurs="0"/>
 *               <element name="lob" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}lob" minOccurs="0"/>
 *             </choice>
 *           </sequence>
 *           <sequence>
 *             <element name="attribute-override" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}attribute-override" maxOccurs="unbounded" minOccurs="0"/>
 *             <element name="association-override" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}association-override" maxOccurs="unbounded" minOccurs="0"/>
 *             <element name="convert" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}convert" maxOccurs="unbounded" minOccurs="0"/>
 *           </sequence>
 *         </choice>
 *         <element name="collection-table" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}collection-table" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="target-class" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="fetch" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}fetch-type" />
 *       <attribute name="access" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}access-type" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "element-collection", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", propOrder = { "orderBy", "orderColumn", "mapKey", "mapKeyClass", "mapKeyTemporal", "mapKeyEnumerated", "mapKeyAttributeOverride", "mapKeyConvert", "mapKeyColumn", "mapKeyJoinColumn", "mapKeyForeignKey", "column", "temporal", "enumerated", "lob", "attributeOverride", "associationOverride", "convert", "collectionTable" }) public class JaxbElementCollection implements Serializable, CollectionAttribute, PersistentAttribute { @XmlElement(name = "order-by", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected String orderBy; @XmlElement(name = "order-column", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbOrderColumn orderColumn; @XmlElement(name = "map-key", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbMapKey mapKey; @XmlElement(name = "map-key-class", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbMapKeyClass mapKeyClass; @XmlElement(name = "map-key-temporal", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter10 .class) @XmlSchemaType(name = "token") protected TemporalType mapKeyTemporal; @XmlElement(name = "map-key-enumerated", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter4 .class) @XmlSchemaType(name = "token") protected EnumType mapKeyEnumerated; @XmlElement(name = "map-key-attribute-override", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List mapKeyAttributeOverride; @XmlElement(name = "map-key-convert", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List mapKeyConvert; @XmlElement(name = "map-key-column", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbMapKeyColumn mapKeyColumn; @XmlElement(name = "map-key-join-column", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List mapKeyJoinColumn; @XmlElement(name = "map-key-foreign-key", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbForeignKey mapKeyForeignKey; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbColumn column; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter10 .class) @XmlSchemaType(name = "token") protected TemporalType temporal; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm", type = String.class) @XmlJavaTypeAdapter(Adapter4 .class) @XmlSchemaType(name = "token") protected EnumType enumerated; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbLob lob; @XmlElement(name = "attribute-override", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List attributeOverride; @XmlElement(name = "association-override", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List associationOverride; @XmlElement(namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected List convert; @XmlElement(name = "collection-table", namespace = "http://xmlns.jcp.org/xml/ns/persistence/orm") protected JaxbCollectionTable collectionTable; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "target-class") protected String targetClass; @XmlAttribute(name = "fetch") @XmlJavaTypeAdapter(Adapter5 .class) protected FetchType fetch; @XmlAttribute(name = "access") @XmlJavaTypeAdapter(Adapter1 .class) protected AccessType access; /** * Gets the value of the orderBy property. * * @return * possible object is * {@link String } * */ public String getOrderBy() { return orderBy; } /** * Sets the value of the orderBy property. * * @param value * allowed object is * {@link String } * */ public void setOrderBy(String value) { this.orderBy = value; } /** * Gets the value of the orderColumn property. * * @return * possible object is * {@link JaxbOrderColumn } * */ public JaxbOrderColumn getOrderColumn() { return orderColumn; } /** * Sets the value of the orderColumn property. * * @param value * allowed object is * {@link JaxbOrderColumn } * */ public void setOrderColumn(JaxbOrderColumn value) { this.orderColumn = value; } /** * Gets the value of the mapKey property. * * @return * possible object is * {@link JaxbMapKey } * */ public JaxbMapKey getMapKey() { return mapKey; } /** * Sets the value of the mapKey property. * * @param value * allowed object is * {@link JaxbMapKey } * */ public void setMapKey(JaxbMapKey value) { this.mapKey = value; } /** * Gets the value of the mapKeyClass property. * * @return * possible object is * {@link JaxbMapKeyClass } * */ public JaxbMapKeyClass getMapKeyClass() { return mapKeyClass; } /** * Sets the value of the mapKeyClass property. * * @param value * allowed object is * {@link JaxbMapKeyClass } * */ public void setMapKeyClass(JaxbMapKeyClass value) { this.mapKeyClass = value; } /** * Gets the value of the mapKeyTemporal property. * * @return * possible object is * {@link String } * */ public TemporalType getMapKeyTemporal() { return mapKeyTemporal; } /** * Sets the value of the mapKeyTemporal property. * * @param value * allowed object is * {@link String } * */ public void setMapKeyTemporal(TemporalType value) { this.mapKeyTemporal = value; } /** * Gets the value of the mapKeyEnumerated property. * * @return * possible object is * {@link String } * */ public EnumType getMapKeyEnumerated() { return mapKeyEnumerated; } /** * Sets the value of the mapKeyEnumerated property. * * @param value * allowed object is * {@link String } * */ public void setMapKeyEnumerated(EnumType value) { this.mapKeyEnumerated = value; } /** * Gets the value of the mapKeyAttributeOverride 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 JAXB object. * This is why there is not a set method for the mapKeyAttributeOverride property. * *

* For example, to add a new item, do as follows: *

     *    getMapKeyAttributeOverride().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbAttributeOverride } * * */ public List getMapKeyAttributeOverride() { if (mapKeyAttributeOverride == null) { mapKeyAttributeOverride = new ArrayList(); } return this.mapKeyAttributeOverride; } /** * Gets the value of the mapKeyConvert 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 JAXB object. * This is why there is not a set method for the mapKeyConvert property. * *

* For example, to add a new item, do as follows: *

     *    getMapKeyConvert().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbConvert } * * */ public List getMapKeyConvert() { if (mapKeyConvert == null) { mapKeyConvert = new ArrayList(); } return this.mapKeyConvert; } /** * Gets the value of the mapKeyColumn property. * * @return * possible object is * {@link JaxbMapKeyColumn } * */ public JaxbMapKeyColumn getMapKeyColumn() { return mapKeyColumn; } /** * Sets the value of the mapKeyColumn property. * * @param value * allowed object is * {@link JaxbMapKeyColumn } * */ public void setMapKeyColumn(JaxbMapKeyColumn value) { this.mapKeyColumn = value; } /** * Gets the value of the mapKeyJoinColumn 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 JAXB object. * This is why there is not a set method for the mapKeyJoinColumn property. * *

* For example, to add a new item, do as follows: *

     *    getMapKeyJoinColumn().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbMapKeyJoinColumn } * * */ public List getMapKeyJoinColumn() { if (mapKeyJoinColumn == null) { mapKeyJoinColumn = new ArrayList(); } return this.mapKeyJoinColumn; } /** * Gets the value of the mapKeyForeignKey property. * * @return * possible object is * {@link JaxbForeignKey } * */ public JaxbForeignKey getMapKeyForeignKey() { return mapKeyForeignKey; } /** * Sets the value of the mapKeyForeignKey property. * * @param value * allowed object is * {@link JaxbForeignKey } * */ public void setMapKeyForeignKey(JaxbForeignKey value) { this.mapKeyForeignKey = value; } /** * Gets the value of the column property. * * @return * possible object is * {@link JaxbColumn } * */ public JaxbColumn getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link JaxbColumn } * */ public void setColumn(JaxbColumn value) { this.column = value; } /** * Gets the value of the temporal property. * * @return * possible object is * {@link String } * */ public TemporalType getTemporal() { return temporal; } /** * Sets the value of the temporal property. * * @param value * allowed object is * {@link String } * */ public void setTemporal(TemporalType value) { this.temporal = value; } /** * Gets the value of the enumerated property. * * @return * possible object is * {@link String } * */ public EnumType getEnumerated() { return enumerated; } /** * Sets the value of the enumerated property. * * @param value * allowed object is * {@link String } * */ public void setEnumerated(EnumType value) { this.enumerated = value; } /** * Gets the value of the lob property. * * @return * possible object is * {@link JaxbLob } * */ public JaxbLob getLob() { return lob; } /** * Sets the value of the lob property. * * @param value * allowed object is * {@link JaxbLob } * */ public void setLob(JaxbLob value) { this.lob = value; } /** * Gets the value of the attributeOverride 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 JAXB object. * This is why there is not a set method for the attributeOverride property. * *

* For example, to add a new item, do as follows: *

     *    getAttributeOverride().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbAttributeOverride } * * */ public List getAttributeOverride() { if (attributeOverride == null) { attributeOverride = new ArrayList(); } return this.attributeOverride; } /** * Gets the value of the associationOverride 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 JAXB object. * This is why there is not a set method for the associationOverride property. * *

* For example, to add a new item, do as follows: *

     *    getAssociationOverride().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbAssociationOverride } * * */ public List getAssociationOverride() { if (associationOverride == null) { associationOverride = new ArrayList(); } return this.associationOverride; } /** * Gets the value of the convert 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 JAXB object. * This is why there is not a set method for the convert property. * *

* For example, to add a new item, do as follows: *

     *    getConvert().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link JaxbConvert } * * */ public List getConvert() { if (convert == null) { convert = new ArrayList(); } return this.convert; } /** * Gets the value of the collectionTable property. * * @return * possible object is * {@link JaxbCollectionTable } * */ public JaxbCollectionTable getCollectionTable() { return collectionTable; } /** * Sets the value of the collectionTable property. * * @param value * allowed object is * {@link JaxbCollectionTable } * */ public void setCollectionTable(JaxbCollectionTable value) { this.collectionTable = value; } /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the targetClass property. * * @return * possible object is * {@link String } * */ public String getTargetClass() { return targetClass; } /** * Sets the value of the targetClass property. * * @param value * allowed object is * {@link String } * */ public void setTargetClass(String value) { this.targetClass = value; } /** * Gets the value of the fetch property. * * @return * possible object is * {@link String } * */ public FetchType getFetch() { return fetch; } /** * Sets the value of the fetch property. * * @param value * allowed object is * {@link String } * */ public void setFetch(FetchType value) { this.fetch = value; } /** * Gets the value of the access property. * * @return * possible object is * {@link String } * */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value * allowed object is * {@link String } * */ public void setAccess(AccessType value) { this.access = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy