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

org.hibernate.tuple.NonIdentifierAttribute Maven / Gradle / Ivy

There is a newer version: 7.0.0.Alpha1
Show newest version
/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * License: GNU Lesser General Public License (LGPL), version 2.1 or later.
 * See the lgpl.txt file in the root directory or .
 */
package org.hibernate.tuple;

import org.hibernate.FetchMode;
import org.hibernate.engine.spi.CascadeStyle;
import org.hibernate.persister.walking.spi.AttributeDefinition;

/**
 * @author Steve Ebersole
 */
public interface NonIdentifierAttribute extends Attribute, AttributeDefinition {
	public boolean isLazy();

	public boolean isInsertable();

	public boolean isUpdateable();

	public ValueGeneration getValueGenerationStrategy();

	public boolean isNullable();

	/**
	 * @deprecated Use {@link org.hibernate.tuple.NonIdentifierAttribute#isDirtyCheckable()} instead
	 */
	@Deprecated
	public boolean isDirtyCheckable(boolean hasUninitializedProperties);

	public boolean isDirtyCheckable();

	public boolean isVersionable();

	public CascadeStyle getCascadeStyle();

	public FetchMode getFetchMode();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy