(Object a, Object b)
| 268 | } |
| 269 | |
| 270 | public static boolean stringEq(Object a, Object b) { |
| 271 | if (a == null || b == null) return false; |
| 272 | return new Precise(String.valueOf(a)).equals(new Precise(String.valueOf(b))); |
| 273 | } |
| 274 | |
| 275 | public static String stringMax(Object a, Object b) { |
| 276 | if (a == null || b == null) return null; |