Uses of Class
javax.persistence.spi.LoadState

Packages that use LoadState
javax.persistence.spi   
 

Uses of LoadState in javax.persistence.spi
 

Methods in javax.persistence.spi that return LoadState
 LoadState ProviderUtil.isLoaded(Object entity)
          If the provider determines that the entity has been provided by itself and that the state of all attributes for which FetchType.EAGER has been specified have been loaded, this method returns LoadState.LOADED.
 LoadState ProviderUtil.isLoadedWithoutReference(Object entity, String attributeName)
          If the provider determines that the entity has been provided by itself and that the state of the specified attribute has been loaded, this method returns LoadState.LOADED.
 LoadState ProviderUtil.isLoadedWithReference(Object entity, String attributeName)
          If the provider determines that the entity has been provided by itself and that the state of the specified attribute has been loaded, this method returns LoadState.LOADED.
static LoadState LoadState.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static LoadState[] LoadState.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 



Copyright © 2007-2010 Hibernate.org. All Rights Reserved.