MCPcopy Index your code
hub / github.com/OpenDRG/DRG_Java / contains

Method contains

drg_group/qingdao_2023/Base.java:94–103  ·  view source on GitHub ↗
(String[] arr, String targetValue)

Source from the content-addressed store, hash-verified

92 return s;
93 }
94 public static boolean contains(String[] arr, String targetValue){
95 if (arr!=null && arr.length>0){
96 for(String s: arr){
97 if(s.equals(targetValue)){
98 return true;
99 }
100 }
101 }
102 return false;
103 }
104}

Callers 15

groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95
groupMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected