(Object a, Object b)
| 273 | } |
| 274 | |
| 275 | public static String stringMax(Object a, Object b) { |
| 276 | if (a == null || b == null) return null; |
| 277 | return new Precise(a).max(new Precise(b)).toString(); |
| 278 | } |
| 279 | |
| 280 | public static boolean stringEquals(Object a, Object b) { |
| 281 | if (a == null || b == null) return false; |