public final class SystemProperties
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static boolean |
isEmptyOrTrue(java.lang.String property)
Returns the value of a system property which defaults to false.
|
static boolean |
isNotFalse(java.lang.String property)
Returns the value of a system property which defaults to true.
|
public static boolean isEmptyOrTrue(java.lang.String property)
property - the name of the system propertytrue iff the given property is defined and has the value "true" or the empty string.public static boolean isNotFalse(java.lang.String property)
property - the name of the system propertytrue iff the given property is undefined, or defined and has the value "true" or the empty string.