static int withFullAlpha(int rgb) { ret rgb | fullAlphaMask(); } static Color withFullAlpha(Color color) { ret color.hasAlpha() ? new Color(color.getRGB()) : color; }