514515516517518519520
* @param value * the given array. * @return <code>null</code>. */ public static double[] aryEq(double[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
528529530531532533534
* @param value * the given array. * @return <code>null</code>. */ public static char[] aryEq(char[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
542543544545546547548
* @param value * the given array. * @return <code>null</code>. */ public static byte[] aryEq(byte[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
556557558559560561562
* @param value * the given array. * @return <code>null</code>. */ public static boolean[] aryEq(boolean[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
444445446447448449450
* @param value * the given array. * @return <code>null</code>. */ public static <T> T[] aryEq(T[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
458459460461462463464
* @param value * the given array. * @return <code>null</code>. */ public static short[] aryEq(short[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
472473474475476477478
* @param value * the given array. * @return <code>null</code>. */ public static long[] aryEq(long[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
486487488489490491492
* @param value * the given array. * @return <code>null</code>. */ public static int[] aryEq(int[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }
500501502503504505506
* @param value * the given array. * @return <code>null</code>. */ public static float[] aryEq(float[] value) { return reportMatcher(new ArrayEquals(value)).returnNull(); }