io.dddspring.common.AssertionConcern Maven / Gradle / Ivy
// Copyright 2012,2013 Vaughn Vernon
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package io.dddspring.common;
public class AssertionConcern {
protected AssertionConcern() {
super();
}
protected void assertArgumentEquals(Object anObject1, Object anObject2, String aMessage) {
if (!anObject1.equals(anObject2)) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentFalse(boolean aBoolean, String aMessage) {
if (aBoolean) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentLength(String aString, int aMaximum, String aMessage) {
int length = aString.trim().length();
if (length > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentLength(String aString, int aMinimum, int aMaximum, String aMessage) {
int length = aString.trim().length();
if (length < aMinimum || length > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentNotEmpty(String aString, String aMessage) {
if (aString == null || aString.trim().isEmpty()) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentNotEquals(Object anObject1, Object anObject2, String aMessage) {
if (anObject1.equals(anObject2)) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentNotNull(Object anObject, String aMessage) {
if (anObject == null) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentRange(double aValue, double aMinimum, double aMaximum, String aMessage) {
if (aValue < aMinimum || aValue > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentRange(float aValue, float aMinimum, float aMaximum, String aMessage) {
if (aValue < aMinimum || aValue > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentRange(int aValue, int aMinimum, int aMaximum, String aMessage) {
if (aValue < aMinimum || aValue > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentRange(long aValue, long aMinimum, long aMaximum, String aMessage) {
if (aValue < aMinimum || aValue > aMaximum) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertArgumentTrue(boolean aBoolean, String aMessage) {
if (!aBoolean) {
throw new IllegalArgumentException(aMessage);
}
}
protected void assertStateFalse(boolean aBoolean, String aMessage) {
if (aBoolean) {
throw new IllegalStateException(aMessage);
}
}
protected void assertStateTrue(boolean aBoolean, String aMessage) {
if (!aBoolean) {
throw new IllegalStateException(aMessage);
}
}
}