All Downloads are FREE. Search and download functionalities are using the official Maven repository.

functions.SystemProperties.ext Maven / Gradle / Ivy

There is a newer version: 1.24.1
Show newest version


cached String getSystemProperty(String propertyName):
   JAVA java.lang.System.getProperty(java.lang.String);


cached String getSystemProperty(String propertyName, String defaultValue):
   JAVA java.lang.System.getProperty(java.lang.String, java.lang.String);


private cached boolean getBooleanSystemProperty(String propertyName, boolean defaultValue):
    if getSystemProperty(propertyName, defaultValue.toString()) == "true"
    then true
    else false;
    
cached boolean generateJSONAutoDetectAnnotationOnClass():
   getBooleanSystemProperty("switch.gen.jackson.jsonautodetect.on.class", false);

cached boolean groupBreakingChangesReportByPackage():
    getBooleanSystemProperty("switch.gen.breaking.changes.report.groupByPackage", true);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy