221222223224225226227
* @param value * the given value. * @return <code>0</code>. */ public static boolean eq(boolean value) { return reportMatcher(new Equals(value)).returnFalse(); }
234235236237238239240
* @param value * the given value. * @return <code>0</code>. */ public static byte eq(byte value) { return reportMatcher(new Equals(value)).returnZero(); }
247248249250251252253
* @param value * the given value. * @return <code>0</code>. */ public static char eq(char value) { return reportMatcher(new Equals(value)).returnChar(); }
260261262263264265266
* @param value * the given value. * @return <code>0</code>. */ public static double eq(double value) { return reportMatcher(new Equals(value)).returnZero(); }
273274275276277278279
* @param value * the given value. * @return <code>0</code>. */ public static float eq(float value) { return reportMatcher(new Equals(value)).returnZero(); }
286287288289290291292
* @param value * the given value. * @return <code>0</code>. */ public static int eq(int value) { return reportMatcher(new Equals(value)).returnZero(); }
299300301302303304305
* @param value * the given value. * @return <code>0</code>. */ public static long eq(long value) { return reportMatcher(new Equals(value)).returnZero(); }
312313314315316317318
* @param value * the given value. * @return <code>0</code>. */ public static short eq(short value) { return reportMatcher(new Equals(value)).returnZero(); }
325326327328329330331
* @param value * the given value. * @return <code>null</code>. */ public static <T> T eq(T value) { return reportMatcher(new Equals(value)).<T>returnNull(); }
351352353354355356357