Uses of Class
com.caucho.quercus.env.EnvVar

Packages that use EnvVar
com.caucho.quercus.env   
 

Uses of EnvVar in com.caucho.quercus.env
 

Subclasses of EnvVar in com.caucho.quercus.env
 class EnvVarImpl
          Encapsulates an environment entry for a variable.
 class LazyEnvVar
          For compiled code and error reporting.
 class LazySaveEnvVar
          Encapsulates an environment entry for a variable.
 

Methods in com.caucho.quercus.env that return EnvVar
 EnvVar LazySymbolMap.get(java.lang.Object key)
          Returns the matching value, or null.
 EnvVar LazySymbolMap.get(StringValue key)
          Returns the matching value, or null.
 EnvVar Env.getEnvVar(StringValue name)
           
 EnvVar Env.getEnvVar(StringValue name, boolean isAutoCreate, boolean isOutputNotice)
          Gets a variable
 EnvVar Env.getGlobalEnvVar(StringValue name)
          Gets a variable
 EnvVar Env.getGlobalEnvVar(StringValue name, boolean isAutoCreate, boolean isOutputNotice)
          Gets a variable
 EnvVar Env.getGlobalRaw(java.lang.String name)
          Returns the raw global lookup.
protected  EnvVar Env.getGlobalScriptContextRef(StringValue name)
           
protected  EnvVar Env.getGlobalSpecialRef(StringValue name)
          Gets a value.
 EnvVar Env.getLazyEnvVar(StringValue name)
           
 EnvVar LazySymbolMap.put(StringValue key, EnvVar newVar)
          Returns the matching value, or null.
 

Methods in com.caucho.quercus.env that return types with arguments of type EnvVar
 java.util.Set<java.util.Map.Entry<StringValue,EnvVar>> LazySymbolMap.entrySet()
           
 java.util.Map<StringValue,EnvVar> Env.getEnv()
          Returns the current environment.
 java.util.Map<StringValue,EnvVar> Env.getGlobalEnv()
          Returns the current environment.
 java.util.Map<StringValue,EnvVar> Env.pushEnv(java.util.Map<StringValue,EnvVar> map)
          Pushes a new environment.
 

Methods in com.caucho.quercus.env with parameters of type EnvVar
 EnvVar LazySymbolMap.put(StringValue key, EnvVar newVar)
          Returns the matching value, or null.
 

Method parameters in com.caucho.quercus.env with type arguments of type EnvVar
 void Env.popEnv(java.util.Map<StringValue,EnvVar> oldEnv)
          Restores the old environment.
 java.util.Map<StringValue,EnvVar> Env.pushEnv(java.util.Map<StringValue,EnvVar> map)
          Pushes a new environment.