final class SystemProperties
extends java.lang.Object
Utilities methods for accessing the properties and the environment variables.
-
Maven Group Identifier:
-
-
Maven Artifact Identifier:
-
-
Since:
-
Action Summary
Modifier and type |
Action and description |
static java.lang.String |
getValue(String)
Replies the value of a property or an environment variable. |
static java.lang.String |
getValue(String,String)
Replies the value of a property or an environment variable. |
Modifier and type |
Action and description |
static java.lang.String |
getValue(String)
Replies the value of a property or an environment variable. |
static java.lang.String |
getValue(String,String)
Replies the value of a property or an environment variable. |
Action Details
-
getValue(String)
-
def getValue(String) : java.lang.String
Replies the value of a property or an environment variable.
The function seach for the following values:
- a property with the given
name
,
- an environment variable with the given
name
,
- a property with the name
"bq."+name
,
- an environment variable with the name
"bq."+name
.
-
Parameters:
-
name -
-
Returns:
-
-
getValue(String,String)
-
def getValue(String,String) : java.lang.String
Replies the value of a property or an environment variable.
The function seach for the following values:
- a property with the given
name
,
- an environment variable with the given
name
,
- a property with the name
"bq."+name
,
- an environment variable with the name
"bq."+name
.
-
Parameters:
-
name -
defaultValue -
-
Returns:
-