(Object a, Object b)
| 263 | } |
| 264 | |
| 265 | public static boolean stringGt(Object a, Object b) { |
| 266 | if (a == null || b == null) return false; |
| 267 | return new Precise(String.valueOf(a)).gt(new Precise(String.valueOf(b))); |
| 268 | } |
| 269 | |
| 270 | public static boolean stringEq(Object a, Object b) { |
| 271 | if (a == null || b == null) return false; |