Changeset 1559 for trunk/src/java/org/jcoderz/commons/util/ArraysUtil.java
- Timestamp:
- 10/08/09 19:39:07 (3 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/java/org/jcoderz/commons/util/ArraysUtil.java
r1557 r1559 70 70 * method, e.g.: 71 71 * <pre> 72 * logger.entering(CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 72 * logger.entering( 73 * CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 73 74 * </pre> 74 75 * @param array The array whose string representation to return. … … 124 125 125 126 /** 126 * Returns a string representation of the contents of the specified array. 127 * Returns a string representation of the contents of the 128 * specified array. 127 129 * If the array contains other arrays as elements, they are converted 128 130 * to strings by the {@link Object#toString}method inherited … … 137 139 * method, e.g.: 138 140 * <pre> 139 * logger.entering(CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 141 * logger.entering( 142 * CLASSNAME, "foo(Object[])", ArraysUtil.toString(array)); 140 143 * </pre> 141 144 * @param array The array whose string representation to return. … … 177 180 178 181 /** 179 * Returns a string representation of the contents of the specified array. 182 * Returns a string representation of the contents of the specified 183 * array. 180 184 * <p> 181 185 * The value dumps all int stored in the given array. … … 184 188 * method, e.g.: 185 189 * <pre> 186 * logger.entering(CLASSNAME, "foo(int[])", ArraysUtil.toString(array)); 190 * logger.entering( 191 * CLASSNAME, "foo(int[])", ArraysUtil.toString(array)); 187 192 * </pre> 188 193 * @param array The array whose string representation to return. … … 223 228 224 229 /** 225 * Returns a string representation of the contents of the specified array. 230 * Returns a string representation of the contents of the specified 231 * array. 226 232 * <p> 227 233 * The value dumps all short stored in the given array. … … 230 236 * method, e.g.: 231 237 * <pre> 232 * logger.entering(CLASSNAME, "foo(short[])", ArraysUtil.toString(array)); 238 * logger.entering( 239 * CLASSNAME, "foo(short[])", ArraysUtil.toString(array)); 233 240 * </pre> 234 241 * @param array The array whose string representation to return. … … 269 276 270 277 /** 271 * Returns a string representation of the contents of the specified array. 278 * Returns a string representation of the contents of the 279 * specified array. 272 280 * <p> 273 281 * The value dumps all long stored in the given array. … … 276 284 * method, e.g.: 277 285 * <pre> 278 * logger.entering(CLASSNAME, "foo(long[])", ArraysUtil.toString(array)); 286 * logger.entering( 287 * CLASSNAME, "foo(long[])", ArraysUtil.toString(array)); 279 288 * </pre> 280 289 * @param array The array whose string representation to return. … … 315 324 316 325 /** 317 * Returns a string representation of the contents of the specified array. 326 * Returns a string representation of the contents of the specified 327 * array. 318 328 * <p> 319 329 * The value dumps all byte values stored in the given array. … … 322 332 * method, e.g.: 323 333 * <pre> 324 * logger.entering(CLASSNAME, "foo(byte[])", ArraysUtil.toString(array)); 334 * logger.entering( 335 * CLASSNAME, "foo(byte[])", ArraysUtil.toString(array)); 325 336 * </pre> 326 337 * @param array The array whose string representation to return. … … 361 372 362 373 /** 363 * Returns a string representation of the contents of the specified array. 374 * Returns a string representation of the contents of the specified 375 * array. 364 376 * <p> 365 377 * The value dumps all char values stored in the given array. … … 368 380 * method, e.g.: 369 381 * <pre> 370 * logger.entering(CLASSNAME, "foo(char[])", ArraysUtil.toString(array)); 382 * logger.entering( 383 * CLASSNAME, "foo(char[])", ArraysUtil.toString(array)); 371 384 * </pre> 372 385 * @param array The array whose string representation to return. … … 407 420 408 421 /** 409 * Returns a string representation of the contents of the specified array. 422 * Returns a string representation of the contents of the 423 * specified array. 410 424 * <p> 411 425 * The value dumps all boolean values stored in the given array. … … 414 428 * method, e.g.: 415 429 * <pre> 416 * logger.entering(CLASSNAME, "foo(boolean[])", ArraysUtil.toString(array)); 430 * logger.entering( 431 * CLASSNAME, "foo(boolean[])", ArraysUtil.toString(array)); 417 432 * </pre> 418 433 * @param array The array whose string representation to return.
