Package com.yworks.yguard.obf
Class Tools
- java.lang.Object
-
- com.yworks.yguard.obf.Tools
-
public class Tools extends java.lang.ObjectA Tools class containing generally useful, miscellaneous static methods.
-
-
Constructor Summary
Constructors Constructor Description Tools()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static booleanisInArray(java.lang.String s, java.lang.String[] list)Is the string one of the ones in the array?static java.lang.StringtoBase64(byte[] b)To base 64 string.
-
-
-
Method Detail
-
isInArray
public static boolean isInArray(java.lang.String s, java.lang.String[] list)Is the string one of the ones in the array?- Parameters:
s- the slist- the list- Returns:
- the boolean
-
toBase64
public static java.lang.String toBase64(byte[] b)
To base 64 string.- Parameters:
b- the b- Returns:
- the string
-
-