| org.hibernate.tuple.Tuplizer |
Known Indirect Subclasses
|
A tuplizer defines the contract for things which know how to manage
a particular representation of a piece of data, given that
representation's EntityMode (the entity-mode
essentially defining which representation).
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Retrieve the getter for the specified property.
| |||||||||||
Return the pojo class managed by this tuplizer.
| |||||||||||
Extract the value of a particular property from the given entity.
| |||||||||||
Extract the current values contained on the given entity.
| |||||||||||
Generate a new, empty entity.
| |||||||||||
Is the given object considered an instance of the the entity (acconting
for entity-mode) managed by this tuplizer.
| |||||||||||
Inject the given values into the given entity.
| |||||||||||
Retrieve the getter for the specified property.
| i | The property index. |
|---|
Return the pojo class managed by this tuplizer.
Need to determine how to best handle this for the Tuplizers for EntityModes other than POJO. todo : be really nice to not have this here since it is essentially pojo specific...Extract the value of a particular property from the given entity.
| entity | The entity from which to extract the property value. |
|---|---|
| i | The index of the property for which to extract the value. |
Extract the current values contained on the given entity.
| entity | The entity from which to extract values. |
|---|
Generate a new, empty entity.
Is the given object considered an instance of the the entity (acconting for entity-mode) managed by this tuplizer.
| object | The object to be checked. |
|---|
Inject the given values into the given entity.
| entity | The entity. |
|---|---|
| values | The values to be injected. |