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

org.hibernate.query.ImmutableEntityUpdateQueryHandlingMode 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.query;

import org.hibernate.HibernateException;

/**
 * This enum defines how {@link org.hibernate.annotations.Immutable} entities are handled when executing a
 * bulk update statement.
 *
 * By default, the ({@link ImmutableEntityUpdateQueryHandlingMode#WARNING}) mode is used, meaning that
 * a warning log message is issued when an {@link org.hibernate.annotations.Immutable} entity
 * is to be updated via a bulk update statement.
 *
 * If the ({@link ImmutableEntityUpdateQueryHandlingMode#EXCEPTION}) mode is used, then a
 * {@link HibernateException} is thrown instead.
 *
 * @author Vlad Mihalcea
 */
public enum ImmutableEntityUpdateQueryHandlingMode {

	WARNING,
	EXCEPTION;

	/**
	 * Interpret the configured {@link ImmutableEntityUpdateQueryHandlingMode} value.
	 * Valid values are either a {@link ImmutableEntityUpdateQueryHandlingMode} object or its String representation.
	 * For string values, the matching is case insensitive,
	 * so you can use either {@code warning} or {@code exception} (case insensitive).
	 *
	 * @param mode configured {@link ImmutableEntityUpdateQueryHandlingMode} representation
	 * @return associated {@link ImmutableEntityUpdateQueryHandlingMode} object
	 */
	public static ImmutableEntityUpdateQueryHandlingMode interpret(Object mode) {
		if ( mode == null ) {
			return WARNING;
		}
		else if ( mode instanceof ImmutableEntityUpdateQueryHandlingMode ) {
			return (ImmutableEntityUpdateQueryHandlingMode) mode;
		}
		else if ( mode instanceof String ) {
			for ( ImmutableEntityUpdateQueryHandlingMode value : values() ) {
				if ( value.name().equalsIgnoreCase( (String) mode ) ) {
					return value;
				}
			}
		}
		throw new HibernateException(
				"Unrecognized immutable_entity_update_query_handling_mode value : " + mode
						+ ".  Supported values include 'warning' and 'exception''."
		);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy