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

org.hibernate.validator.internal.util.Contracts Maven / Gradle / Ivy

Go to download

JSR 380's RI, Hibernate Validator version ${hibernate-validator.version} and its dependencies repackaged as OSGi bundle

There is a newer version: 5.1.0
Show newest version
/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or .
 */
package org.hibernate.validator.internal.util;

import static org.hibernate.validator.internal.util.logging.Messages.MESSAGES;

import java.lang.invoke.MethodHandles;
import java.util.Collection;

import org.hibernate.validator.internal.util.logging.Log;
import org.hibernate.validator.internal.util.logging.LoggerFactory;

/**
 * @author Gunnar Morling
 * @author Hardy Ferentschik
 * @author Kevin Pollet <[email protected]> (C) 2012 SERLI
 */
public final class Contracts {

	private static final Log LOG = LoggerFactory.make( MethodHandles.lookup() );

	private Contracts() {
	}

	public static void assertNotNull(Object o) {
		assertNotNull( o, MESSAGES.mustNotBeNull() );
	}

	/**
	 * Asserts that the given object is not {@code null}.
	 *
	 * @param o The object to check.
	 * @param message A message text which will be used as message of the resulting
	 * exception if the given object is {@code null}.
	 *
	 * @throws IllegalArgumentException In case the given object is {@code null}.
	 */
	public static void assertNotNull(Object o, String message) {
		if ( o == null ) {
			throw LOG.getIllegalArgumentException( message );
		}
	}

	/**
	 * Asserts that the given object is not {@code null}.
	 *
	 * @param o The object to check.
	 * @param name The name of the value to check. A message of the form
	 * "<name> must not be null" will be used as message of
	 * the resulting exception if the given object is {@code null}.
	 *
	 * @throws IllegalArgumentException In case the given object is {@code null}.
	 */
	public static void assertValueNotNull(Object o, String name) {
		if ( o == null ) {
			throw LOG.getIllegalArgumentException( MESSAGES.mustNotBeNull( name ) );
		}
	}

	public static void assertTrue(boolean condition, String message) {
		if ( !condition ) {
			throw LOG.getIllegalArgumentException( message );
		}
	}

	public static void assertTrue(boolean condition, String message, Object... messageParameters) {
		if ( !condition ) {
			throw LOG.getIllegalArgumentException( String.format( message, messageParameters ) );
		}
	}

	public static void assertNotEmpty(String s, String message) {
		if ( s.length() == 0 ) {
			throw LOG.getIllegalArgumentException( message );
		}
	}

	public static void assertNotEmpty(Collection collection, String message) {
		if ( collection.size() == 0 ) {
			throw LOG.getIllegalArgumentException( message );
		}
	}

	public static void assertNotEmpty(Collection collection, String message, Object... messageParameters) {
		if ( collection.size() == 0 ) {
			throw LOG.getIllegalArgumentException( String.format( message, messageParameters ) );
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy