MCPcopy Create free account
hub / github.com/EhsanTang/ApiManager / isEquals

Method isEquals

api/src/main/java/cn/crap/utils/MyString.java:8–16  ·  view source on GitHub ↗
(String tagValue,String value)

Source from the content-addressed store, hash-verified

6
7public class MyString {
8 public static boolean isEquals(String tagValue,String value)
9 {
10 if(isEmpty(tagValue) || isEmpty(value))
11 return false;
12 else if(tagValue.equals(value))
13 return true;
14 else
15 return false;
16 }
17 /**
18 * 判断对象是否为空
19 * Object = null

Callers 1

hasAuthMethod · 0.95

Calls 1

isEmptyMethod · 0.95

Tested by

no test coverage detected