类 SystemEnvPropertySource

    • 字段概要

      字段 
      修饰符和类型 字段 说明
      private java.util.Map<java.lang.String,​java.lang.String> env  
    • 方法概要

      所有方法 实例方法 具体方法 
      修饰符和类型 方法 说明
      private java.lang.String checkPropertyName​(java.lang.String name)
      copy from https://github.com/spring-projects/spring-framework.git Copyright 2002-2021 the original author or authors.
      private boolean containsKey​(java.lang.String name)  
      (专用程序包) java.lang.String getProperty​(java.lang.String key)
      get property, if the value can not be got by the special key, the null will be returned.
      (专用程序包) SourceType getType()
      get property's type.
      • 从类继承的方法 java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 字段详细资料

      • env

        private final java.util.Map<java.lang.String,​java.lang.String> env
    • 构造器详细资料

      • SystemEnvPropertySource

        SystemEnvPropertySource()
    • 方法详细资料

      • getProperty

        java.lang.String getProperty​(java.lang.String key)
        从类复制的说明: AbstractPropertySource
        get property, if the value can not be got by the special key, the null will be returned.
        指定者:
        getProperty 在类中 AbstractPropertySource
        参数:
        key - special key
        返回:
        value or null
      • checkPropertyName

        private java.lang.String checkPropertyName​(java.lang.String name)
        copy from https://github.com/spring-projects/spring-framework.git Copyright 2002-2021 the original author or authors. Since: 3.1 Author: Chris Beams, Juergen Hoeller
      • containsKey

        private boolean containsKey​(java.lang.String name)