org.hibernate.jpamodelgen.xml.jaxb.Basic Maven / Gradle / Ivy
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.XmlElement;
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.
*
*
{@code
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
* }
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "basic", namespace = "https://jakarta.ee/xml/ns/persistence/orm", propOrder = {
"column",
"lob",
"temporal",
"enumerated",
"convert"
})
public class Basic {
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected Column column;
@XmlElement(namespace = "https://jakarta.ee/xml/ns/persistence/orm")
protected Lob lob;
@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 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy