isLoadedWithReference(entity, attributeName) - JPA ProviderUtil's method
Method javax.persistence.spi.ProviderUtil
LoadState isLoadedWithReference(
Object entity,
String attributeName
)
LoadState.LOADED
. If a provider determines that the entity has been provided by itself and that either the entity attributes with FetchType.EAGER
have not been loaded or that the state of the specified attribute has not been loaded, this method returns return LoadState.NOT_LOADED
.
If the provider cannot determine the load state, this method returns LoadState.UNKNOWN
.
The provider's implementation of this method is permitted to obtain a reference to the attribute value. (This access is safe because providers which might trigger the loading of the attribute state will have already been determined by isLoadedWithoutReference
. )
- Parameters:
-
entity
- entity instance -
attributeName
- name of attribute whose load status is to be determined
- Returns:
- load status of the attribute
- Since:
- JPA 2.0