Package org.hibernate.boot.jaxb.mapping
Class JaxbConvert
- java.lang.Object
-
- org.hibernate.boot.jaxb.mapping.JaxbConvert
-
- All Implemented Interfaces:
Serializable
public class JaxbConvert extends Object implements Serializable
See `@jakarta.persistence.Convert`Java class for convert complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="convert"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="description" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> </sequence> <attribute name="converter" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="attribute-name" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="disable-conversion" type="{http://www.w3.org/2001/XMLSchema}boolean" /> </restriction> </complexContent> </complexType>
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected String
attributeName
protected String
converter
protected String
description
protected Boolean
disableConversion
-
Constructor Summary
Constructors Constructor Description JaxbConvert()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getAttributeName()
Gets the value of the attributeName property.String
getConverter()
Gets the value of the converter property.String
getDescription()
Gets the value of the description property.Boolean
isDisableConversion()
Gets the value of the disableConversion property.void
setAttributeName(String value)
Sets the value of the attributeName property.void
setConverter(String value)
Sets the value of the converter property.void
setDescription(String value)
Sets the value of the description property.void
setDisableConversion(Boolean value)
Sets the value of the disableConversion property.
-
-
-
Method Detail
-
getDescription
public String getDescription()
Gets the value of the description property.- Returns:
- possible object is
String
-
setDescription
public void setDescription(String value)
Sets the value of the description property.- Parameters:
value
- allowed object isString
-
getConverter
public String getConverter()
Gets the value of the converter property.- Returns:
- possible object is
String
-
setConverter
public void setConverter(String value)
Sets the value of the converter property.- Parameters:
value
- allowed object isString
-
getAttributeName
public String getAttributeName()
Gets the value of the attributeName property.- Returns:
- possible object is
String
-
setAttributeName
public void setAttributeName(String value)
Sets the value of the attributeName property.- Parameters:
value
- allowed object isString
-
isDisableConversion
public Boolean isDisableConversion()
Gets the value of the disableConversion property.- Returns:
- possible object is
Boolean
-
-