资源简介
一个java代码工具类的集合,提供了常用的string,data等操作
代码片段和文件信息
package net.xconfig.check;
import net.xconfig.exception.TboxException;
import net.xconfig.tool.StringTool;
/**
* title:
* Description:
* Project: Tbox
* Author: cg
* Create Time:2018/8/10 13:41
*/
public class Assert {
public static void isTrue(boolean flag){
isTrue(flag null);
}
public static void isTrue(boolean flag String errorMsg){
if (!flag){
throw new TboxException(errorMsg);
}
}
public static void notNull(object o){
notNull(o null);
}
public static void notNull(object o String errorMsg){
if (o == null){
throw new TboxException(errorMsg);
}
}
public static void isNull(object o){
isNull(o null);
}
public static void isNull(object o String errorMsg) {
if (o != null){
throw new TboxException(errorMsg);
}
}
public static void hasLength(String text){
hasLength(text null);
}
public static void hasLength(String text String errorMsg){
if (StringTool.isEmpty(text)){
throw new TboxException(errorMsg);
}
}
public static void lenRegion(String text int minSize int maxSize){
lenRegion(text minSize maxSize null null null);
}
public static void lenRegion(String text int minSize int maxSize String emptyMsg String minMsg String maxMsg){
hasLength(text emptyMsg);
if (text.length() < minSize){
throw new TboxException(minMsg);
}
if (text.length() > maxSize){
throw new TboxException(maxMsg);
}
}
public static void isTelephone(String text String message){
isTrue(StringTool.isTelephone(text) message);
}
public static void isEmail(String text String message){
isTrue(StringTool.isEmail(text) message);
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2018-08-10 10:45 Tbox\
目录 0 2018-08-17 09:18 Tbox\.git\
文件 76 2018-08-14 16:45 Tbox\.git\COMMIT_EDITMSG
文件 23 2018-08-07 21:51 Tbox\.git\HEAD
文件 493 2018-08-07 22:00 Tbox\.git\config
文件 73 2018-08-07 21:51 Tbox\.git\desc
目录 0 2018-08-07 21:51 Tbox\.git\hooks\
文件 478 2018-08-07 21:51 Tbox\.git\hooks\applypatch-msg.sample
文件 896 2018-08-07 21:51 Tbox\.git\hooks\commit-msg.sample
文件 189 2018-08-07 21:51 Tbox\.git\hooks\post-update.sample
文件 424 2018-08-07 21:51 Tbox\.git\hooks\pre-applypatch.sample
文件 1642 2018-08-07 21:51 Tbox\.git\hooks\pre-commit.sample
文件 1348 2018-08-07 21:51 Tbox\.git\hooks\pre-push.sample
文件 4898 2018-08-07 21:51 Tbox\.git\hooks\pre-reba
文件 544 2018-08-07 21:51 Tbox\.git\hooks\pre-receive.sample
文件 1492 2018-08-07 21:51 Tbox\.git\hooks\prepare-commit-msg.sample
文件 3610 2018-08-07 21:51 Tbox\.git\hooks\update.sample
文件 2404 2018-08-14 16:45 Tbox\.git\index
目录 0 2018-08-07 21:51 Tbox\.git\info\
文件 240 2018-08-07 21:51 Tbox\.git\info\exclude
目录 0 2018-08-07 21:51 Tbox\.git\logs\
文件 798 2018-08-14 16:45 Tbox\.git\logs\HEAD
目录 0 2018-08-07 22:00 Tbox\.git\logs\refs\
目录 0 2018-08-07 21:51 Tbox\.git\logs\refs\heads\
文件 798 2018-08-14 16:45 Tbox\.git\logs\refs\heads\master
目录 0 2018-08-07 22:00 Tbox\.git\logs\refs\remotes\
目录 0 2018-08-07 22:00 Tbox\.git\logs\refs\remotes\orgin\
文件 740 2018-08-14 16:45 Tbox\.git\logs\refs\remotes\orgin\master
目录 0 2018-08-14 16:45 Tbox\.git\ob
目录 0 2018-08-12 21:11 Tbox\.git\ob
文件 152 2018-08-12 21:11 Tbox\.git\ob
............此处省略222个文件信息
相关资源
- 广工java文本编辑器课设源代码
- java 模拟进程调度
- java绘制股票走势图
- java,socket聊天,单聊,群聊,传文件
- 在线投票小程序java源代码
- java ajax上传文件并显示进度条
- Java多线程赛马游戏
- jdk-8u221-linux-x64.tar.gz
- javax.servlet-api-3.0.1-sources.jar
- Java版数据结构与算法视频教程(20集
- java-ymodem/xmodem上位机源码
- C4.5决策树Java实现
- 基于JAVA的学生管理系统源代码
- java版网页图片编辑器
- Java从入门到精通第3和4版书+全套光盘
- 清华大学人工智能大作业源码
- java实现k-means算法137342
- 排课表Java源代码
- Java实战项目 - 办公自动化管理系统源
- Java实战项目 - 图书管理系统源码内有
- 基于java的多线程断点续传程序源代码
- 用java语言编一个聊天小程序
- 用java做的一个答题小程序的作业
- java数据结构视频教程共20集
- cmpp2.0 java源代码
- javax jar包
- 基于令牌桶算法的Java限流实现
- DES 有界面,用JAVA实现
- 通用SQL语句解析类SqlParser(JAVA版)
- java模拟风扇
评论
共有 条评论