Uses of Enum
javax.persistence.spi.LoadState

Packages that use LoadState
Package
Description
 
  • Uses of LoadState in javax.persistence.spi

    Methods in javax.persistence.spi that return LoadState
    Modifier and Type
    Method
    Description
    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.
    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.
    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 are declared.