format: 规范化代码风格

This commit is contained in:
2024-05-21 03:13:30 +08:00
parent c0ebee6976
commit 1c00489cb7
24 changed files with 64 additions and 64 deletions

View File

@@ -11,40 +11,40 @@ public final class Assert {
private Assert(){throw new UnsupportedOperationException();}
public static void notNull(Object object){
public static void notNull(Object object) {
notNull(object, null);
}
public static void notNull(Object object, String msg){
public static void notNull(Object object, String msg) {
if(object == null)
throw new NullPointerException(msg);
}
public static void notNull(Object...objects){
public static void notNull(Object...objects) {
for (Object object : objects) {
notNull(object);
}
}
public static void isPositive(int i){
if(i <= 0){
public static void isPositive(int i) {
if(i <= 0) {
throw new IllegalArgumentException("指定参数必须大于0!");
}
}
public static void isLargerThan(int source, int target){
if(source <= target){
public static void isLargerThan(int source, int target) {
if(source <= target) {
throw new IllegalArgumentException(String.format("%s太小了, 它必须大于%s", source, target));
}
}
public static void notEmpty(Collection<?> collection){
public static void notEmpty(Collection<?> collection) {
notNull(collection);
if(collection.isEmpty())
throw new IllegalArgumentException("参数不能为空!");
}
public static void notEmpty(CharSequence charSequence){
public static void notEmpty(CharSequence charSequence) {
notNull(charSequence);
if(charSequence.length() == 0)
throw new IllegalArgumentException("参数不能为空!");