/*
 * Hibernate Validator, declare and validate application constraints
 *
 * License: Apache License, Version 2.0
 * See the license.txt file in the root directory or <http://www.apache.org/licenses/LICENSE-2.0>.
 */
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 java.util.Locale;

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

Author:Gunnar Morling, Hardy Ferentschik, Kevin Pollet <kevin.pollet@serli.com> (C) 2012 SERLI
/** * @author Gunnar Morling * @author Hardy Ferentschik * @author Kevin Pollet &lt;kevin.pollet@serli.com&gt; (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 null.
Params:
  • o – The object to check.
  • message – A message text which will be used as message of the resulting exception if the given object is null.
Throws:
/** * 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 null.
Params:
  • o – The object to check.
  • 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 null.
Throws:
/** * 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 * "&lt;name&gt; 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( Locale.ROOT, 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( Locale.ROOT, message, messageParameters ) ); } } }