(Object a, Object b)
| 278 | } |
| 279 | |
| 280 | public static boolean stringEquals(Object a, Object b) { |
| 281 | if (a == null || b == null) return false; |
| 282 | return new Precise(String.valueOf(a)).equals(new Precise(String.valueOf(b))); |
| 283 | } |
| 284 | |
| 285 | public static String stringMin(Object string1, Object string2) { |
| 286 | if (string1 == null || string2 == null) return null; |