Here you can find the source of allEquals(int y, int y2, int y3)
Parameter | Description |
---|---|
y | a parameter |
y2 | a parameter |
y3 | a parameter |
private static boolean allEquals(int y, int y2, int y3)
//package com.java2s; //License from project: Apache License public class Main { /**/* ww w . j a v a 2 s. c om*/ * @param y * @param y2 * @param y3 * @return */ private static boolean allEquals(int y, int y2, int y3) { if ((y == y2) && (y2 == y3)) { return true; } return false; } }