public static class SystemProperty.Environment extends SystemProperty
The current executing environment. Has the key,
"com.google.appengine.runtime.environment"
.
The set of values are specified by Value.
Methods
set(SystemProperty.Environment.Value value)
public void set(SystemProperty.Environment.Value value)
Sets the Environment to value
. Equivalent to
set(value.value())
.
Parameter | |
---|---|
Name | Description |
value |
SystemProperty.Environment.Value |
value()
public SystemProperty.Environment.@Nullable Value value()
Returns the Value that the SystemProperty is set to.
Returns | |
---|---|
Type | Description |
com.google.appengine.api.utils.SystemProperty.Environment.@org.jspecify.annotations.Nullable Value |
null if the Environment is not set, or is set to a value that
does not correspond to any predefined |