org.hibernate.jpamodelgen.xml.jaxb.Basic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-jpamodelgen-jakarta Show documentation
Show all versions of hibernate-jpamodelgen-jakarta Show documentation
Annotation Processor to generate JPA 3 static metamodel classes
//
// 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: 2022.09.27 at 12:27:10 PM UTC
//
package org.hibernate.jpamodelgen.xml.jaxb;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
*
*
* @Target({METHOD, FIELD}) @Retention(RUNTIME)
* public @interface Basic {
* FetchType fetch() default EAGER;
* boolean optional() default true;
* }
*
*
*
* Java class for basic complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="basic">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="column" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}column" minOccurs="0"/>
* <choice>
* <element name="lob" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}lob" minOccurs="0"/>
* <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="convert" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}convert" minOccurs="0"/>
* </choice>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="fetch" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}fetch-type" />
* <attribute name="optional" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="access" type="{http://xmlns.jcp.org/xml/ns/persistence/orm}access-type" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "basic", propOrder = {
"column",
"lob",
"temporal",
"enumerated",
"convert"
})
public class Basic {
protected Column column;
protected Lob lob;
@XmlSchemaType(name = "token")
protected TemporalType temporal;
@XmlSchemaType(name = "token")
protected EnumType enumerated;
protected Convert convert;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "fetch")
protected FetchType fetch;
@XmlAttribute(name = "optional")
protected Boolean optional;
@XmlAttribute(name = "access")
protected AccessType access;
/**
* 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 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 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 convert property.
*
* @return
* possible object is
* {@link Convert }
*
*/
public Convert getConvert() {
return convert;
}
/**
* Sets the value of the convert property.
*
* @param value
* allowed object is
* {@link Convert }
*
*/
public void setConvert(Convert value) {
this.convert = 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 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 optional property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isOptional() {
return optional;
}
/**
* Sets the value of the optional property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setOptional(Boolean value) {
this.optional = 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;
}
}