Package org.hibernate.metamodel.spi
Interface ValueAccess
-
- All Known Implementing Classes:
AbstractEmbeddableInitializer
,EmbeddableFetchInitializer
,EmbeddableResultInitializer
public interface ValueAccess
Provides access to the values for a managed type (currently just embeddables).- See Also:
EmbeddableInstantiator
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default Object
getOwner()
Access to the owner of the instance being instantiateddefault <T> T
getValue(int i, Class<T> clazz)
Access to an individual value.Object[]
getValues()
The complete set of values.
-