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

org.hibernate.boot.model.source.spi.NaturalIdMutability 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.boot.model.source.spi;

/**
 * A ternary boolean enum for describing the mutability aspects of an
 * attribute as a natural id.
 *
 * @author Steve Ebersole
 */
public enum NaturalIdMutability {
	/**
	 * The attribute is part of a mutable natural id
	 */
	MUTABLE,
	/**
	 * The attribute is part of a immutable natural id
	 */
	IMMUTABLE,
	/**
	 * The attribute is not part of any kind of natural id.
	 */
	NOT_NATURAL_ID
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy