Package org.apache.openjpa.jdbc.meta
Interface ValueMapping
- All Superinterfaces:
MetaDataContext
,MetaDataModes
,Serializable
,ValueMetaData
- All Known Implementing Classes:
FieldMapping
,ValueMappingImpl
Specialization of value metadata for relational databases.
- Since:
- 0.4.0
- Author:
- Abe White
-
Field Summary
Modifier and TypeFieldDescriptionstatic final int
Inverse join that is marked up as a forward join because the backing mapping expects an inverse direction.static final int
Standard forward join.static final int
Inverse join.static final int
A non-polymorphic relation.static final int
A relation that can hold any joinable subclass type.static final int
A fully polymorphic relation (the default).Fields inherited from interface org.apache.openjpa.meta.MetaDataModes
MODE_ALL, MODE_ANN_MAPPING, MODE_MAPPING, MODE_MAPPING_INIT, MODE_META, MODE_NONE, MODE_QUERY
Fields inherited from interface org.apache.openjpa.meta.ValueMetaData
CASCADE_AUTO, CASCADE_IMMEDIATE, CASCADE_NONE, MAPPED_BY_PK
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Clear mapping information, including strategy.void
Copy mapping info from the given instance to this one.I/O information on the foreign key, or columns if this value doesn't have a key.Column[]
The columns that hold the data for this value.Convenience method to perform cast fromValueMetaData.getDeclaredTypeMetaData()
.Convenience method to perform cast fromValueMetaData.getEmbeddedMetaData()
.Convenience method to perform cast fromValueMetaData.getFieldMetaData()
.If this value joins to another record, the foreign key.getForeignKey
(ClassMapping target) Return an equivalent of this value's foreign key, but joining to the given target, which may be an unjoined subclass of this value's related type.The handler used for this value, or null if none.Return all independently-mapped joinable types for this value, depending on whether this value is polymorphic and how the related type is mapped.int
The join direction.Convenience method to perform cast fromMetaDataContext.getRepository()
.int
The degree to which this relation is polymorphic.int
Return theorg.apache.openjpa.sql.Select
subclasses constant for loading this relation, based on how the related type is mapped, whether this relation is polymorphic, and whether it is configured to use class criteria.Convenience method to perform cast fromValueMetaData.getTypeMetaData()
.boolean
Whether to use class criteria when joining to related type.Index on this value's columns, or null if none.Raw mapping data.Convenience method to perform cast fromValueMetaData.getValueMappedByMetaData()
.Unique constraint on this value's columns, or null if none.void
mapConstraints
(String name, boolean adapt) Deprecated.void
mapConstraints
(DBIdentifier name, boolean adapt) Map indexes and constraints for this value, using the currentValueMappingInfo
.void
Increase the reference count on used schema components.void
setColumnIO
(ColumnIO io) I/O information on the foreign key, or columns if this value doesn't have a key.void
setColumns
(Column[] cols) The columns that hold the data for this value.void
If this value joins to another record, the foreign key.void
setForeignKey
(Row row, OpenJPAStateManager rel) Sets this value's foreign key to the given related object.void
setForeignKey
(Row row, OpenJPAStateManager rel, int targetNumber) Sets this value's foreign key to the given related object.void
setHandler
(ValueHandler handler) The handler used for this value, or null if none.void
setJoinDirection
(int direction) The join direction.void
setPolymorphic
(int polymorphic) The degree to which this relation is polymorphic.void
setUseClassCriteria
(boolean criteria) Whether to use class criteria when joining to related type.void
setValueIndex
(Index idx) Index on this value's columns, or null if none.void
setValueUnique
(Unique unq) Unique constraint on this value's columns, or null if none.void
UpdateMappingInfo
with our current mapping information.void
whereForeignKey
(Row row, OpenJPAStateManager rel) Sets this value's foreign key to the given related object.Methods inherited from interface org.apache.openjpa.meta.MetaDataContext
getRepository
Methods inherited from interface org.apache.openjpa.meta.ValueMetaData
addEmbeddedMetaData, addEmbeddedMetaData, copy, getCascadeAttach, getCascadeDelete, getCascadeDetach, getCascadePersist, getCascadeRefresh, getDeclaredType, getDeclaredTypeCode, getDeclaredTypeMetaData, getEmbeddedMetaData, getFieldMetaData, getResolve, getType, getTypeCode, getTypeMetaData, getTypeOverride, getValueMappedBy, getValueMappedByMetaData, isDeclaredTypePC, isEmbedded, isEmbeddedPC, isSerialized, isTypePC, resolve, setCascadeAttach, setCascadeDelete, setCascadeDetach, setCascadePersist, setCascadePersist, setCascadeRefresh, setDeclaredType, setDeclaredTypeCode, setEmbedded, setResolve, setResolve, setSerialized, setType, setTypeCode, setTypeOverride, setValueMappedBy
-
Field Details
-
JOIN_FORWARD
static final int JOIN_FORWARDStandard forward join.- See Also:
-
JOIN_INVERSE
static final int JOIN_INVERSEInverse join.- See Also:
-
JOIN_EXPECTED_INVERSE
static final int JOIN_EXPECTED_INVERSEInverse join that is marked up as a forward join because the backing mapping expects an inverse direction.- See Also:
-
POLY_TRUE
static final int POLY_TRUEA fully polymorphic relation (the default).- See Also:
-
POLY_FALSE
static final int POLY_FALSEA non-polymorphic relation.- See Also:
-
POLY_JOINABLE
static final int POLY_JOINABLEA relation that can hold any joinable subclass type.- See Also:
-
-
Method Details
-
getValueInfo
ValueMappingInfo getValueInfo()Raw mapping data. -
getHandler
ValueHandler getHandler()The handler used for this value, or null if none. -
setHandler
The handler used for this value, or null if none. -
getMappingRepository
MappingRepository getMappingRepository()Convenience method to perform cast fromMetaDataContext.getRepository()
. -
getFieldMapping
FieldMapping getFieldMapping()Convenience method to perform cast fromValueMetaData.getFieldMetaData()
. -
getTypeMapping
ClassMapping getTypeMapping()Convenience method to perform cast fromValueMetaData.getTypeMetaData()
. -
getDeclaredTypeMapping
ClassMapping getDeclaredTypeMapping()Convenience method to perform cast fromValueMetaData.getDeclaredTypeMetaData()
. -
getEmbeddedMapping
ClassMapping getEmbeddedMapping()Convenience method to perform cast fromValueMetaData.getEmbeddedMetaData()
. -
getValueMappedByMapping
FieldMapping getValueMappedByMapping()Convenience method to perform cast fromValueMetaData.getValueMappedByMetaData()
. -
getColumns
Column[] getColumns()The columns that hold the data for this value. -
setColumns
The columns that hold the data for this value. -
getColumnIO
ColumnIO getColumnIO()I/O information on the foreign key, or columns if this value doesn't have a key. -
setColumnIO
I/O information on the foreign key, or columns if this value doesn't have a key. -
getForeignKey
ForeignKey getForeignKey()If this value joins to another record, the foreign key. -
getForeignKey
Return an equivalent of this value's foreign key, but joining to the given target, which may be an unjoined subclass of this value's related type. -
setForeignKey
If this value joins to another record, the foreign key. -
getJoinDirection
int getJoinDirection()The join direction. -
setJoinDirection
void setJoinDirection(int direction) The join direction. -
setForeignKey
Sets this value's foreign key to the given related object. The object may be null.- Throws:
SQLException
-
setForeignKey
Sets this value's foreign key to the given related object. The object may be null. If the object is one of2or more foreign keys with the same target, the targetNumber specifies the one to set.- Throws:
SQLException
-
whereForeignKey
Sets this value's foreign key to the given related object. The object may be null.- Throws:
SQLException
-
getIndependentTypeMappings
ClassMapping[] getIndependentTypeMappings()Return all independently-mapped joinable types for this value, depending on whether this value is polymorphic and how the related type is mapped. Return an empty array if value type is not PC. -
getSelectSubclasses
int getSelectSubclasses()Return theorg.apache.openjpa.sql.Select
subclasses constant for loading this relation, based on how the related type is mapped, whether this relation is polymorphic, and whether it is configured to use class criteria. -
getValueUnique
Unique getValueUnique()Unique constraint on this value's columns, or null if none. -
setValueUnique
Unique constraint on this value's columns, or null if none. -
getValueIndex
Index getValueIndex()Index on this value's columns, or null if none. -
setValueIndex
Index on this value's columns, or null if none. -
getUseClassCriteria
boolean getUseClassCriteria()Whether to use class criteria when joining to related type. -
setUseClassCriteria
void setUseClassCriteria(boolean criteria) Whether to use class criteria when joining to related type. -
getPolymorphic
int getPolymorphic()The degree to which this relation is polymorphic. -
setPolymorphic
void setPolymorphic(int polymorphic) The degree to which this relation is polymorphic. -
refSchemaComponents
void refSchemaComponents()Increase the reference count on used schema components. -
mapConstraints
Deprecated.Map indexes and constraints for this value, using the currentValueMappingInfo
. The foreign key or columns of this value must be set before calling this method. -
mapConstraints
Map indexes and constraints for this value, using the currentValueMappingInfo
. The foreign key or columns of this value must be set before calling this method. -
clearMapping
void clearMapping()Clear mapping information, including strategy. -
syncMappingInfo
void syncMappingInfo()UpdateMappingInfo
with our current mapping information. -
copyMappingInfo
Copy mapping info from the given instance to this one.
-