All Downloads are FREE. Search and download functionalities are using the official Maven repository.

javax.persistence.spi.LoadState Maven / Gradle / Ivy

The newest version!
package javax.persistence.spi;

/**
 * Loaded states.
 * 
 * @author hceylan
 * @since $version
 */
public enum LoadState {

	/**
	 * the state of the element is known to have been loaded
	 */
	LOADED,

	/**
	 * the state of the element is known not to have been loaded
	 */
	NOT_LOADED,

	/**
	 * the load state of the element cannot be determined
	 */
	UNKNOWN
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy