Returns the object instance of i @param i the primitive @return object instance
(long i)
| 204 | * @return object instance |
| 205 | */ |
| 206 | public static Long valueOf(long i) { |
| 207 | return new Long(i); |
| 208 | } |
| 209 | |
| 210 | public static int compare(long f1, long f2) { |
| 211 | if (f1 > f2) return 1; |
no outgoing calls