Module org.eclipse.persistence.jpa
Class LobMetadata
- java.lang.Object
-
- org.eclipse.persistence.internal.jpa.metadata.ORMetadata
-
- org.eclipse.persistence.internal.jpa.metadata.converters.MetadataConverter
-
- org.eclipse.persistence.internal.jpa.metadata.converters.LobMetadata
-
public class LobMetadata extends MetadataConverter
INTERNAL: Abstract converter class that parents both the JPA and Eclipselink converters. Key notes: - any metadata mapped from XML to this class must be compared in the equals method. - when loading from annotations, the constructor accepts the metadata accessor this metadata was loaded from. Used it to look up any 'companion' annotation needed for processing. - methods should be preserved in alphabetical order.- Since:
- EclipseLink 1.2
- Author:
- Guy Pelletier
-
-
Field Summary
-
Fields inherited from class org.eclipse.persistence.internal.jpa.metadata.ORMetadata
m_project
-
-
Constructor Summary
Constructors Constructor Description LobMetadata()INTERNAL: Used for XML loading.LobMetadata(MetadataAnnotation lob, MetadataAccessor accessor)INTERNAL: Used for annotation loading.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object objectToCompare)INTERNAL:inthashCode()static booleanisValidBlobType(MetadataClass cls)INTERNAL: Returns true if the given class is a valid blob type.static booleanisValidClobType(MetadataClass cls)INTERNAL: Returns true if the given class is a valid clob type.static booleanisValidLobType(MetadataClass cls)INTERNAL: Returns true if the given class is a valid lob type.voidprocess(DatabaseMapping mapping, MappingAccessor accessor, MetadataClass referenceClass, boolean isForMapKey)INTERNAL: Every converter needs to be able to process themselves.-
Methods inherited from class org.eclipse.persistence.internal.jpa.metadata.converters.MetadataConverter
setConverter, setConverterClassName, setFieldClassification, setFieldClassification
-
Methods inherited from class org.eclipse.persistence.internal.jpa.metadata.ORMetadata
getAccessibleObject, getAccessibleObjectName, getAnnotation, getBoxedType, getDatabaseTypeEnum, getEntityMappings, getFullyQualifiedClassName, getIdentifier, getJavaClass, getJavaClassName, getLoader, getLocation, getLogger, getMetadataClass, getMetadataClass, getMetadataClass, getMetadataFactory, getName, getPrimitiveClassForName, getProject, getText, getXMLElement, hasIdentifier, hasText, initXMLClassName, initXMLObject, initXMLObject, initXMLObjects, initXMLTextObject, loadedFromAnnotation, loadedFromEclipseLinkXML, loadedFromXML, merge, mergeORObjectLists, mergeORObjects, mergeSimpleObjects, reloadEntity, reloadMappedSuperclass, setAccessibleObject, setEntityMappings, setFieldName, setFieldName, setProject, shouldOverride, valuesMatch, valuesMatch
-
-
-
-
Constructor Detail
-
LobMetadata
public LobMetadata()
INTERNAL: Used for XML loading.
-
LobMetadata
public LobMetadata(MetadataAnnotation lob, MetadataAccessor accessor)
INTERNAL: Used for annotation loading.
-
-
Method Detail
-
equals
public boolean equals(Object objectToCompare)
INTERNAL:- Overrides:
equalsin classMetadataConverter
-
isValidBlobType
public static boolean isValidBlobType(MetadataClass cls)
INTERNAL: Returns true if the given class is a valid blob type.
-
isValidClobType
public static boolean isValidClobType(MetadataClass cls)
INTERNAL: Returns true if the given class is a valid clob type.
-
isValidLobType
public static boolean isValidLobType(MetadataClass cls)
INTERNAL: Returns true if the given class is a valid lob type.
-
process
public void process(DatabaseMapping mapping, MappingAccessor accessor, MetadataClass referenceClass, boolean isForMapKey)
INTERNAL: Every converter needs to be able to process themselves.- Specified by:
processin classMetadataConverter
-
-