org.jpox.store.mapped.mapping
Class ArrayMapping

java.lang.Object
  extended by org.jpox.store.mapped.mapping.JavaTypeMapping
      extended by org.jpox.store.mapped.mapping.SingleFieldMapping
          extended by org.jpox.store.mapped.mapping.AbstractContainerMapping
              extended by org.jpox.store.mapped.mapping.ArrayMapping
All Implemented Interfaces:
MappingCallbacks

public class ArrayMapping
extends AbstractContainerMapping
implements MappingCallbacks

Mapping for an array.

Version:
$Revision: 1.30 $

Field Summary
 
Fields inherited from class org.jpox.store.mapped.mapping.AbstractContainerMapping
fieldName, storeMgr
 
Fields inherited from class org.jpox.store.mapped.mapping.JavaTypeMapping
datastoreContainer, datastoreMappings, dba, fmd, LOCALISER, MAPPING_ARRAY_ELEMENT, MAPPING_COLLECTION_ELEMENT, MAPPING_FIELD, MAPPING_MAP_KEY, MAPPING_MAP_VALUE, referenceMapping, roleForField, type
 
Constructor Summary
ArrayMapping()
           
 
Method Summary
protected  boolean containerIsStoredInSingleColumn()
          Convenience method to return if the array is stored in the owning table as a column.
 boolean equals(java.lang.Object obj)
          Equality operator.
 java.lang.Class getJavaType()
          Accessor for the Java type represented here.
 java.lang.Object getSampleValue(ClassLoaderResolver clr)
          Accessor for a sample value for this mapping.
 ScalarExpression newLiteral(QueryExpression qs, java.lang.Object value)
          Accessor for a literal representing this type.
 ScalarExpression newScalarExpression(QueryExpression qs, LogicSetExpression te)
          Accessor for a scalar expression involving this object.
 void postFetch(StateManager sm)
          Method to be called after any fetch of the owner class element.
 void postInsert(StateManager sm)
          Method to be called after the insert of the owner class element.
 void postUpdate(StateManager sm)
          Method to be called after any update of the owner class element.
 void preDelete(StateManager sm)
          Method to be called before any delete of the owner class element, if the field in the owner is dependent
 
Methods inherited from class org.jpox.store.mapped.mapping.AbstractContainerMapping
getDatastoreContainer, getDataStoreMapping, getDataStoreMappings, getJavaTypeForDatastoreMapping, getNumberOfDatastoreFields, getObject, hashCode, includeInFetchStatement, includeInInsertStatement, includeInUpdateStatement, initialize, prepareDatastoreMapping, replaceFieldWithWrapper, setObject
 
Methods inherited from class org.jpox.store.mapped.mapping.SingleFieldMapping
getBoolean, getByte, getChar, getDefaultLength, getDouble, getFloat, getInt, getLong, getShort, getString, getValidValues, setBoolean, setByte, setChar, setDouble, setFloat, setInt, setLong, setShort, setString
 
Methods inherited from class org.jpox.store.mapped.mapping.JavaTypeMapping
addDataStoreMapping, failureMessage, getFieldMetaData, getObject, getReferenceMapping, getRoleForField, getType, initialize, isNullable, isSerialised, setDefault, setFieldInformation, setObject, setReferenceMapping, setRoleForField
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

ArrayMapping

public ArrayMapping()
Method Detail

equals

public boolean equals(java.lang.Object obj)
Equality operator.

Overrides:
equals in class SingleFieldMapping
Parameters:
obj - Object to compare against
Returns:
Whether they are equal

getJavaType

public java.lang.Class getJavaType()
Accessor for the Java type represented here.

Specified by:
getJavaType in class JavaTypeMapping
Returns:
The java type

getSampleValue

public java.lang.Object getSampleValue(ClassLoaderResolver clr)
Accessor for a sample value for this mapping.

Overrides:
getSampleValue in class AbstractContainerMapping
Parameters:
clr - TODO
Returns:
The sample value

containerIsStoredInSingleColumn

protected boolean containerIsStoredInSingleColumn()
Convenience method to return if the array is stored in the owning table as a column. Overrides the superclass since arrays can be stored in a single column also when the no join is specified and the array is of a primitive/wrapper type.

Overrides:
containerIsStoredInSingleColumn in class AbstractContainerMapping
Returns:
Whether it is stored in a single column in the main table.

postInsert

public void postInsert(StateManager sm)
Method to be called after the insert of the owner class element.

Specified by:
postInsert in interface MappingCallbacks
Parameters:
sm - StateManager of the owner

postFetch

public void postFetch(StateManager sm)
Method to be called after any fetch of the owner class element.

Specified by:
postFetch in interface MappingCallbacks
Overrides:
postFetch in class AbstractContainerMapping
Parameters:
sm - StateManager of the owner

postUpdate

public void postUpdate(StateManager sm)
Method to be called after any update of the owner class element.

Specified by:
postUpdate in interface MappingCallbacks
Parameters:
sm - StateManager of the owner

preDelete

public void preDelete(StateManager sm)
Method to be called before any delete of the owner class element, if the field in the owner is dependent

Specified by:
preDelete in interface MappingCallbacks
Parameters:
sm - StateManager of the owner

newLiteral

public ScalarExpression newLiteral(QueryExpression qs,
                                   java.lang.Object value)
Accessor for a literal representing this type.

Specified by:
newLiteral in class JavaTypeMapping
Parameters:
qs - The Query
value - the value of this object in the literal
Returns:
The literal

newScalarExpression

public ScalarExpression newScalarExpression(QueryExpression qs,
                                            LogicSetExpression te)
Accessor for a scalar expression involving this object.

Specified by:
newScalarExpression in class JavaTypeMapping
Parameters:
qs - The Query
te - The table holding this object.
Returns:
The expression


Copyright © -2008 . All Rights Reserved.