Java Swing Tutorial - Java Color.getBlue()








Syntax

Color.getBlue() has the following syntax.

public int getBlue()

Example

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.