public interface IEnvironment
Modifier and Type | Method and Description |
---|---|
java.lang.Object |
get(java.lang.Object key)
Get a value from the environment.
|
java.lang.Object |
put(java.lang.Object key,
java.lang.Object value)
Put a value into the environment.
|
java.lang.Object |
remove(java.lang.Object key)
Remove a value from the environment.
|
java.lang.Object get(java.lang.Object key)
key
- an Object (usually a String) representing the name of the environment variablejava.lang.Object put(java.lang.Object key, java.lang.Object value)
key
- an Object (usually a String) representing the name of the environment variablevalue
- an Object (usually a String) of the environment variable valuejava.lang.Object remove(java.lang.Object key)
key
- an Object (usually a String) representing the name of the environment variable