(Object a, Object b)
| 305 | } |
| 306 | |
| 307 | public static boolean stringLe(Object a, Object b) { |
| 308 | if (a == null || b == null) return false; |
| 309 | return new Precise(String.valueOf(a)).le(new Precise(String.valueOf(b))); |
| 310 | } |
| 311 | |
| 312 | public static boolean stringGe(Object a, Object b) { |
| 313 | if (a == null || b == null) return false; |