/**
* Boolean.getBoolean method reads the system property
* and translates it into a boolean value.
*/ boolean bool = Boolean.getBoolean("ENABLE_DEBUG_FLAG");
System.out.println(bool);
//Set the system property either through application
//startup parameters (-DENABLE_DEBUG_FLAG=TruE) or System.setProperty
System.setProperty("ENABLE_DEBUG_FLAG", "TruE");