Each of these takes a string type system property and returns the property value. public class MainClass { public static void main(String[] argv) { System.out.println(Boolean.getBoolean("not a property")); } }
false