Which of the following is an invalid constant declaration in Java?
final int myInt = 0;
final String USERNAME = "admin";
final boolean found = "yes";
final double MY_PI = 3.14159;