public class EntityResult extends SQLResult
Purpose: Concrete class to represent the EntityResult structure as defined by the EJB 3.0 Persistence specification. This class is a subcompent of the SQLResultSetMapping
SQLResultSetMapping
Modifier and Type | Field and Description |
---|---|
protected java.lang.String |
discriminatorColumn
Stores the column that will contain the value to determine the correct subclass
to create if applicable.
|
protected java.lang.Class |
entityClass |
protected java.lang.String |
entityClassName
Stores the class name of result
|
protected java.util.Map |
fieldResults
Stores the list of FieldResult
|
Constructor and Description |
---|
EntityResult(java.lang.Class entityClass) |
EntityResult(java.lang.String entityClassName) |
Modifier and Type | Method and Description |
---|---|
void |
addFieldResult(FieldResult fieldResult) |
void |
convertClassNamesToClasses(java.lang.ClassLoader classLoader)
INTERNAL:
Convert all the class-name-based settings in this query to actual class-based
settings.
|
java.lang.String |
getDiscriminatorColumn()
Returns the column name for the column that will store the value used to
determine the subclass type if applicable.
|
java.util.Map |
getFieldResults()
Accessor for the internally stored list of FieldResult.
|
java.lang.Object |
getValueFromRecord(DatabaseRecord record,
ResultSetMappingQuery query)
INTERNAL:
This method is a convience method for extracting values from Results
|
void |
getValueFromRecordForMapping(DatabaseRecord entityRecord,
DatabaseMapping mapping,
FieldResult fieldResult,
DatabaseRecord databaseRecord)
INTERNAL:
This method is for processing all FieldResults for a mapping.
|
boolean |
isEntityResult() |
DatabaseField |
processValueFromRecordForMapping(ClassDescriptor descriptor,
java.lang.String[] attributeNames,
int currentLoc)
INTERNAL:
This method is for processing a single FieldResult, returning the DatabaseField it refers to.
|
void |
setDiscriminatorColumn(java.lang.String column)
Sets the column name for the column that will store the value used to
determine the subclass type if applicable.
|
isColumnResult
protected java.lang.String entityClassName
protected java.lang.Class entityClass
protected java.util.Map fieldResults
protected java.lang.String discriminatorColumn
public EntityResult(java.lang.Class entityClass)
public EntityResult(java.lang.String entityClassName)
public void addFieldResult(FieldResult fieldResult)
public void convertClassNamesToClasses(java.lang.ClassLoader classLoader)
convertClassNamesToClasses
in class SQLResult
classLoader
- public java.util.Map getFieldResults()
public java.lang.String getDiscriminatorColumn()
public void setDiscriminatorColumn(java.lang.String column)
public java.lang.Object getValueFromRecord(DatabaseRecord record, ResultSetMappingQuery query)
getValueFromRecord
in class SQLResult
public boolean isEntityResult()
isEntityResult
in class SQLResult
public void getValueFromRecordForMapping(DatabaseRecord entityRecord, DatabaseMapping mapping, FieldResult fieldResult, DatabaseRecord databaseRecord)
public DatabaseField processValueFromRecordForMapping(ClassDescriptor descriptor, java.lang.String[] attributeNames, int currentLoc)