Color.getBlue() has the following syntax.
public int getBlue()
In the following code shows how to use Color.getBlue() method.
import java.awt.Color; /* w w w.j av a 2s .c om*/ public class Main { public static void main(String[] args) { Color myColor = Color.RED; System.out.println(myColor.getBlue()); } }
The code above generates the following result.