Module eclipselink
Class ConverterClass<T extends jakarta.persistence.AttributeConverter<X,Y>,X,Y>
- java.lang.Object
-
- org.eclipse.persistence.mappings.converters.ConverterClass<T,X,Y>
-
- All Implemented Interfaces:
Serializable,CoreConverter<DatabaseMapping,Session>,org.eclipse.persistence.internal.descriptors.ClassNameConversionRequired,Converter
public class ConverterClass<T extends jakarta.persistence.AttributeConverter<X,Y>,X,Y> extends Object implements Converter, org.eclipse.persistence.internal.descriptors.ClassNameConversionRequired
A JPA attribute converter class wrapped with an EclipseLink converter. This class is placed directly on mappings.- See Also:
- Serialized Form
- Author:
- Guy Pelletier
- Since:
- Eclipselink 2.5
-
-
Field Summary
Fields Modifier and Type Field Description protected jakarta.persistence.AttributeConverter<X,Y>attributeConverterprotected StringattributeConverterClassNameprotected booleandisableConversionprotected Class<?>fieldClassificationprotected StringfieldClassificationNameprotected booleanisForMapKeyprotected org.eclipse.persistence.internal.sessions.AbstractSessionsession
-
Constructor Summary
Constructors Constructor Description ConverterClass(String attributeConverterClassName, boolean isForMapKey, String fieldClassificationName, boolean disableConversion)INTERNAL: This method will be called when creating a converter for an embedded mapping attribute.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidconvertClassNamesToClasses(ClassLoader classLoader)INTERNAL: Convert all the class-name-based settings in this converter to actual class-based settings.ObjectconvertDataValueToObjectValue(Object dataValue, Session session)INTERNAL:ObjectconvertObjectValueToDataValue(Object objectValue, Session session)INTERNAL:protected jakarta.persistence.AttributeConverter<X,Y>getAttributeConverter()voidinitialize(DatabaseMapping mapping, Session session)INTERNAL:booleanisMutable()INTERNAL:voidsetSession(org.eclipse.persistence.internal.sessions.AbstractSession session)
-
-
-
Field Detail
-
isForMapKey
protected boolean isForMapKey
-
disableConversion
protected boolean disableConversion
-
fieldClassification
protected Class<?> fieldClassification
-
fieldClassificationName
protected String fieldClassificationName
-
attributeConverterClassName
protected String attributeConverterClassName
-
session
protected org.eclipse.persistence.internal.sessions.AbstractSession session
-
-
Constructor Detail
-
ConverterClass
public ConverterClass(String attributeConverterClassName, boolean isForMapKey, String fieldClassificationName, boolean disableConversion)
INTERNAL: This method will be called when creating a converter for an embedded mapping attribute. The isForMapKey information will need to be known for proper initialization.
-
-
Method Detail
-
convertClassNamesToClasses
public void convertClassNamesToClasses(ClassLoader classLoader)
INTERNAL: Convert all the class-name-based settings in this converter to actual class-based settings. This method is used when converting a project that has been built with class names to a project with classes.- Specified by:
convertClassNamesToClassesin interfaceorg.eclipse.persistence.internal.descriptors.ClassNameConversionRequired
-
convertDataValueToObjectValue
public Object convertDataValueToObjectValue(Object dataValue, Session session)
INTERNAL:- Specified by:
convertDataValueToObjectValuein interfaceConverter- Specified by:
convertDataValueToObjectValuein interfaceCoreConverter<T extends jakarta.persistence.AttributeConverter<X,Y>,X>
-
convertObjectValueToDataValue
public Object convertObjectValueToDataValue(Object objectValue, Session session)
INTERNAL:- Specified by:
convertObjectValueToDataValuein interfaceConverter- Specified by:
convertObjectValueToDataValuein interfaceCoreConverter<T extends jakarta.persistence.AttributeConverter<X,Y>,X>
-
initialize
public void initialize(DatabaseMapping mapping, Session session)
INTERNAL:- Specified by:
initializein interfaceConverter- Specified by:
initializein interfaceCoreConverter<T extends jakarta.persistence.AttributeConverter<X,Y>,X>
-
setSession
public void setSession(org.eclipse.persistence.internal.sessions.AbstractSession session)
-
-