[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-09-04 UTC."],[[["\u003cp\u003e\u003ccode\u003eSystemProperty.Environment\u003c/code\u003e represents the current executing environment and uses \u003ccode\u003e"com.google.appengine.runtime.environment"\u003c/code\u003e as its key.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003eEnvironment\u003c/code\u003e class inherits from \u003ccode\u003eSystemProperty\u003c/code\u003e and, further up, \u003ccode\u003ejava.lang.Object\u003c/code\u003e, meaning it gains members and methods from both.\u003c/p\u003e\n"],["\u003cp\u003eYou can set the executing environment to a specific \u003ccode\u003eValue\u003c/code\u003e using the \u003ccode\u003eset(SystemProperty.Environment.Value value)\u003c/code\u003e method, and this method is equivalent to using \u003ccode\u003eset(value.value())\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003evalue()\u003c/code\u003e method retrieves the \u003ccode\u003eSystemProperty.Environment.Value\u003c/code\u003e that is currently assigned to the SystemProperty, and returns null if nothing is assigned or the assigned value does not correspond to a predefined \u003ccode\u003eValue\u003c/code\u003e.\u003c/p\u003e\n"],["\u003cp\u003eThe different method calls such as \u003ccode\u003eget()\u003c/code\u003e , \u003ccode\u003ekey()\u003c/code\u003e, \u003ccode\u003eset(String)\u003c/code\u003e etc.can be called on the \u003ccode\u003eSystemProperty.Environment\u003c/code\u003e object due to inheritance from the \u003ccode\u003eSystemProperty\u003c/code\u003e class.\u003c/p\u003e\n"]]],[],null,["# Class SystemProperty.Environment (2.0.0)\n\n public static class SystemProperty.Environment extends SystemProperty\n\nThe current executing environment. Has the key,\n`\"com.google.appengine.runtime.environment\"`.\nThe set of values are specified by Value. \n\nInheritance\n-----------\n\n[java.lang.Object](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html) \\\u003e [SystemProperty](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.SystemProperty) \\\u003e SystemProperty.Environment \n\nInherited Members\n-----------------\n\n[SystemProperty.get()](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.SystemProperty#com_google_appengine_api_utils_SystemProperty_get__) \n[SystemProperty.key()](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.SystemProperty#com_google_appengine_api_utils_SystemProperty_key__) \n[SystemProperty.set(String)](/appengine/docs/standard/java-gen2/reference/services/bundled/latest/com.google.appengine.api.utils.SystemProperty#com_google_appengine_api_utils_SystemProperty_set_java_lang_String_) \n[Object.clone()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#clone--) \n[Object.equals(Object)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#equals-java.lang.Object-) \n[Object.finalize()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#finalize--) \n[Object.getClass()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#getClass--) \n[Object.hashCode()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#hashCode--) \n[Object.notify()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notify--) \n[Object.notifyAll()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#notifyAll--) \n[Object.toString()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#toString--) \n[Object.wait()](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait--) \n[Object.wait(long)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-) \n[Object.wait(long,int)](https://docs.oracle.com/javase/8/docs/api/java/lang/Object.html#wait-long-int-)\n\nMethods\n-------\n\n### set(SystemProperty.Environment.Value value)\n\n public void set(SystemProperty.Environment.Value value)\n\nSets the Environment to `value`. Equivalent to\n`set(value.value())`.\n\n### value()\n\n public @Nullable SystemProperty.Environment.Value value()\n\nReturns the Value that the SystemProperty is set to."]]