blob: 367947167b6b2aaa75ac734d2cf58e6c8fcb0d92 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.sshd.common.util;
import java.util.Collection;
import java.util.Map;
/**
* @author <a href="mailto:dev@mina.apache.org">Apache MINA SSHD Project</a>
*/
public final class ValidateUtils {
private ValidateUtils() {
throw new UnsupportedOperationException("No instance");
}
public static <T> T checkNotNull(T t, String message) {
checkTrue(t != null, message);
return t;
}
public static <T> T checkNotNull(T t, String message, Object arg) {
checkTrue(t != null, message, arg);
return t;
}
public static <T> T checkNotNull(T t, String message, long value) {
checkTrue(t != null, message, value);
return t;
}
public static <T> T checkNotNull(T t, String message, Object... args) {
checkTrue(t != null, message, args);
return t;
}
public static String checkNotNullAndNotEmpty(String t, String message) {
t = checkNotNull(t, message).trim();
checkTrue(GenericUtils.length(t) > 0, message);
return t;
}
public static String checkNotNullAndNotEmpty(String t, String message, Object arg) {
t = checkNotNull(t, message, arg).trim();
checkTrue(GenericUtils.length(t) > 0, message, arg);
return t;
}
public static String checkNotNullAndNotEmpty(String t, String message, Object... args) {
t = checkNotNull(t, message, args).trim();
checkTrue(GenericUtils.length(t) > 0, message, args);
return t;
}
public static <K, V, M extends Map<K, V>> M checkNotNullAndNotEmpty(M t, String message, Object... args) {
t = checkNotNull(t, message, args);
checkTrue(GenericUtils.size(t) > 0, message, args);
return t;
}
public static <T, C extends Collection<T>> C checkNotNullAndNotEmpty(C t, String message, Object... args) {
t = checkNotNull(t, message, args);
checkTrue(GenericUtils.size(t) > 0, message, args);
return t;
}
public static byte[] checkNotNullAndNotEmpty(byte[] a, String message) {
a = checkNotNull(a, message);
checkTrue(NumberUtils.length(a) > 0, message);
return a;
}
public static byte[] checkNotNullAndNotEmpty(byte[] a, String message, Object... args) {
a = checkNotNull(a, message, args);
checkTrue(NumberUtils.length(a) > 0, message, args);
return a;
}
public static int[] checkNotNullAndNotEmpty(int[] a, String message) {
a = checkNotNull(a, message);
checkTrue(NumberUtils.length(a) > 0, message);
return a;
}
public static int[] checkNotNullAndNotEmpty(int[] a, String message, Object... args) {
a = checkNotNull(a, message, args);
checkTrue(NumberUtils.length(a) > 0, message, args);
return a;
}
public static <T> T[] checkNotNullAndNotEmpty(T[] t, String message, Object... args) {
t = checkNotNull(t, message, args);
checkTrue(GenericUtils.length(t) > 0, message, args);
return t;
}
public static void checkTrue(boolean flag, String message) {
if (!flag) {
throwIllegalArgumentException(message, GenericUtils.EMPTY_OBJECT_ARRAY);
}
}
public static void checkTrue(boolean flag, String message, long value) {
if (!flag) {
throwIllegalArgumentException(message, value);
}
}
public static void checkTrue(boolean flag, String message, Object arg) {
if (!flag) {
throwIllegalArgumentException(message, arg);
}
}
public static void checkTrue(boolean flag, String message, Object... args) {
if (!flag) {
throwIllegalArgumentException(message, args);
}
}
public static void throwIllegalArgumentException(String message, Object... args) {
throw new IllegalArgumentException(String.format(message, args));
}
}