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

org.hibernate.jpamodelgen.xml.jaxb.ElementCollection Maven / Gradle / Ivy


package org.hibernate.jpamodelgen.xml.jaxb;

import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;


/**
 * 
 * 
 *         @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. * *

{@code
 * 
 *   
 *     
 *       
 *         
 *           
 *           
 *         
 *         
 *           
 *           
 *             
 *             
 *               
 *               
 *               
 *                 
 *                 
 *               
 *             
 *             
 *               
 *               
 *                 
 *                 
 *               
 *             
 *           
 *         
 *         
 *           
 *             
 *             
 *               
 *               
 *               
 *             
 *           
 *           
 *             
 *             
 *             
 *           
 *         
 *         
 *       
 *       
 *       
 *       
 *       
 *     
 *   
 * 
 * }
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "element-collection", namespace = "https://jakarta.ee/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 ElementCollection { @XmlElement(name = "order-by", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected String orderBy; @XmlElement(name = "order-column", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected OrderColumn orderColumn; @XmlElement(name = "map-key", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected MapKey mapKey; @XmlElement(name = "map-key-class", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected MapKeyClass mapKeyClass; @XmlElement(name = "map-key-temporal", namespace = "https://jakarta.ee/xml/ns/persistence/orm") @XmlSchemaType(name = "token") protected TemporalType mapKeyTemporal; @XmlElement(name = "map-key-enumerated", namespace = "https://jakarta.ee/xml/ns/persistence/orm") @XmlSchemaType(name = "token") protected EnumType mapKeyEnumerated; @XmlElement(name = "map-key-attribute-override", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List mapKeyAttributeOverride; @XmlElement(name = "map-key-convert", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List mapKeyConvert; @XmlElement(name = "map-key-column", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected MapKeyColumn mapKeyColumn; @XmlElement(name = "map-key-join-column", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List mapKeyJoinColumn; @XmlElement(name = "map-key-foreign-key", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected ForeignKey mapKeyForeignKey; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected Column column; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") @XmlSchemaType(name = "token") protected TemporalType temporal; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") @XmlSchemaType(name = "token") protected EnumType enumerated; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected Lob lob; @XmlElement(name = "attribute-override", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List attributeOverride; @XmlElement(name = "association-override", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List associationOverride; @XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected List convert; @XmlElement(name = "collection-table", namespace = "https://jakarta.ee/xml/ns/persistence/orm") protected CollectionTable collectionTable; @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "target-class") protected String targetClass; @XmlAttribute(name = "fetch") protected FetchType fetch; @XmlAttribute(name = "access") 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 OrderColumn } * */ public OrderColumn getOrderColumn() { return orderColumn; } /** * Sets the value of the orderColumn property. * * @param value * allowed object is * {@link OrderColumn } * */ public void setOrderColumn(OrderColumn value) { this.orderColumn = value; } /** * Gets the value of the mapKey property. * * @return * possible object is * {@link MapKey } * */ public MapKey getMapKey() { return mapKey; } /** * Sets the value of the mapKey property. * * @param value * allowed object is * {@link MapKey } * */ public void setMapKey(MapKey value) { this.mapKey = value; } /** * Gets the value of the mapKeyClass property. * * @return * possible object is * {@link MapKeyClass } * */ public MapKeyClass getMapKeyClass() { return mapKeyClass; } /** * Sets the value of the mapKeyClass property. * * @param value * allowed object is * {@link MapKeyClass } * */ public void setMapKeyClass(MapKeyClass value) { this.mapKeyClass = value; } /** * Gets the value of the mapKeyTemporal property. * * @return * possible object is * {@link TemporalType } * */ public TemporalType getMapKeyTemporal() { return mapKeyTemporal; } /** * Sets the value of the mapKeyTemporal property. * * @param value * allowed object is * {@link TemporalType } * */ public void setMapKeyTemporal(TemporalType value) { this.mapKeyTemporal = value; } /** * Gets the value of the mapKeyEnumerated property. * * @return * possible object is * {@link EnumType } * */ public EnumType getMapKeyEnumerated() { return mapKeyEnumerated; } /** * Sets the value of the mapKeyEnumerated property. * * @param value * allowed object is * {@link EnumType } * */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 AttributeOverride } * * * @return * The value of the mapKeyAttributeOverride property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 Convert } * * * @return * The value of the mapKeyConvert property. */ public List getMapKeyConvert() { if (mapKeyConvert == null) { mapKeyConvert = new ArrayList<>(); } return this.mapKeyConvert; } /** * Gets the value of the mapKeyColumn property. * * @return * possible object is * {@link MapKeyColumn } * */ public MapKeyColumn getMapKeyColumn() { return mapKeyColumn; } /** * Sets the value of the mapKeyColumn property. * * @param value * allowed object is * {@link MapKeyColumn } * */ public void setMapKeyColumn(MapKeyColumn 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 Jakarta XML Binding object. * This is why there is not a {@code 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 MapKeyJoinColumn } * * * @return * The value of the mapKeyJoinColumn property. */ public List getMapKeyJoinColumn() { if (mapKeyJoinColumn == null) { mapKeyJoinColumn = new ArrayList<>(); } return this.mapKeyJoinColumn; } /** * Gets the value of the mapKeyForeignKey property. * * @return * possible object is * {@link ForeignKey } * */ public ForeignKey getMapKeyForeignKey() { return mapKeyForeignKey; } /** * Sets the value of the mapKeyForeignKey property. * * @param value * allowed object is * {@link ForeignKey } * */ public void setMapKeyForeignKey(ForeignKey value) { this.mapKeyForeignKey = value; } /** * Gets the value of the column property. * * @return * possible object is * {@link Column } * */ public Column getColumn() { return column; } /** * Sets the value of the column property. * * @param value * allowed object is * {@link Column } * */ public void setColumn(Column value) { this.column = value; } /** * Gets the value of the temporal property. * * @return * possible object is * {@link TemporalType } * */ public TemporalType getTemporal() { return temporal; } /** * Sets the value of the temporal property. * * @param value * allowed object is * {@link TemporalType } * */ public void setTemporal(TemporalType value) { this.temporal = value; } /** * Gets the value of the enumerated property. * * @return * possible object is * {@link EnumType } * */ public EnumType getEnumerated() { return enumerated; } /** * Sets the value of the enumerated property. * * @param value * allowed object is * {@link EnumType } * */ public void setEnumerated(EnumType value) { this.enumerated = value; } /** * Gets the value of the lob property. * * @return * possible object is * {@link Lob } * */ public Lob getLob() { return lob; } /** * Sets the value of the lob property. * * @param value * allowed object is * {@link Lob } * */ public void setLob(Lob 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 Jakarta XML Binding object. * This is why there is not a {@code 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 AttributeOverride } * * * @return * The value of the attributeOverride property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 AssociationOverride } * * * @return * The value of the associationOverride property. */ 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 Jakarta XML Binding object. * This is why there is not a {@code 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 Convert } * * * @return * The value of the convert property. */ public List getConvert() { if (convert == null) { convert = new ArrayList<>(); } return this.convert; } /** * Gets the value of the collectionTable property. * * @return * possible object is * {@link CollectionTable } * */ public CollectionTable getCollectionTable() { return collectionTable; } /** * Sets the value of the collectionTable property. * * @param value * allowed object is * {@link CollectionTable } * */ public void setCollectionTable(CollectionTable 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 FetchType } * */ public FetchType getFetch() { return fetch; } /** * Sets the value of the fetch property. * * @param value * allowed object is * {@link FetchType } * */ public void setFetch(FetchType value) { this.fetch = value; } /** * Gets the value of the access property. * * @return * possible object is * {@link AccessType } * */ public AccessType getAccess() { return access; } /** * Sets the value of the access property. * * @param value * allowed object is * {@link AccessType } * */ public void setAccess(AccessType value) { this.access = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy