Skip to content

Commit 23d17b5

Browse files
committed
adding helper and utility classes
1 parent fa26107 commit 23d17b5

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
package com.browserstack.client.util;
2+
3+
public class Constants {
4+
5+
public class Filter{
6+
public static final String LIMIT = "limit";
7+
public static final String FILTER = "filter";
8+
9+
}
10+
11+
}
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
package com.browserstack.client.util;
2+
3+
public class Tools {
4+
5+
// Checks if a string is null or empty
6+
public static boolean isStringEmpty(String str) {
7+
return (str == null || str.isEmpty());
8+
}
9+
}

0 commit comments

Comments
 (0)