public class Confidential { private String secret = ""; public Confidential(String text) { this.secret = text.toUpperCase(); } }