org.hibernate.validator.internal.util.Contracts Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-validator Show documentation
Show all versions of hibernate-validator Show documentation
JPMS Module-Info's for a few of the Jakarta Libraries. These will be removed as time goes by
/*
* 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( StringHelper.format( message, messageParameters ) );
}
}
public static void assertNotEmpty(String s, String message) {
if ( StringHelper.isNullOrEmptyString( s ) ) {
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( StringHelper.format( message, messageParameters ) );
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy