public interface SystemPropertyOperationProvider
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getSystemProperty(java.lang.String name)
Gets the system property indicated by the specified name.
|
java.lang.String |
getSystemProperty(java.lang.String name,
java.lang.String def)
Gets the system property indicated by the specified name.
|
java.lang.String |
setSystemProperty(java.lang.String name,
java.lang.String value)
Sets the system property indicated by the specified name.
|
java.lang.String getSystemProperty(java.lang.String name)
name - the name of the system property.null if there is no
property with that key.java.lang.String getSystemProperty(java.lang.String name,
java.lang.String def)
name - the name of the system property.def - a default value.java.lang.String setSystemProperty(java.lang.String name,
java.lang.String value)
name - the name of the system property.value - the value of the system property.null if it did not have one.Copyright © 2014-2021 Trustin Lee. All Rights Reserved.