91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 91KB
    文件類型: .zip
    金幣: 2
    下載: 0 次
    發布日期: 2021-06-01
  • 語言: Java
  • 標簽: java??util??

資源簡介

一個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()?????????????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\description
?????目錄???????????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-rebase.sample
?????文件?????????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\objects\
?????目錄???????????0??2018-08-12?21:11??Tbox\.git\objects\07\
?????文件?????????152??2018-08-12?21:11??Tbox\.git\objects\07\b8aec43a4c0aeb0f1d5dc0e4d431811f1a1439
............此處省略222個文件信息

評論

共有 條評論