类 PropertySource.ComparisonPropertySource
java.lang.Object
cn.taketoday.core.env.PropertySource<Object>
cn.taketoday.core.env.PropertySource.StubPropertySource
cn.taketoday.core.env.PropertySource.ComparisonPropertySource
- 封闭类:
- PropertySource<T>
A
PropertySource implementation intended for collection comparison
purposes.-
嵌套类概要
从类继承的嵌套类/接口 cn.taketoday.core.env.PropertySource
PropertySource.ComparisonPropertySource, PropertySource.StubPropertySource -
字段概要
字段从类继承的字段 cn.taketoday.core.env.PropertySource
name, source -
构造器概要
构造器 -
方法概要
修饰符和类型方法说明booleancontainsProperty(String name) Return whether thisPropertySourcecontains the given name.getProperty(String name) Always returnsnull.Return the underlying source object for thisPropertySource.
-
字段详细资料
-
USAGE_ERROR
- 另请参阅:
-
-
构造器详细资料
-
ComparisonPropertySource
-
-
方法详细资料
-
getSource
从类复制的说明:PropertySourceReturn the underlying source object for thisPropertySource.- 覆盖:
getSource在类中PropertySource<Object>
-
containsProperty
从类复制的说明:PropertySourceReturn whether thisPropertySourcecontains the given name.This implementation simply checks for a
nullreturn value fromPropertySource.getProperty(String). Subclasses may wish to implement a more efficient algorithm if possible.- 覆盖:
containsProperty在类中PropertySource<Object>- 参数:
name- the property name to find
-
getProperty
从类复制的说明:PropertySource.StubPropertySourceAlways returnsnull.- 覆盖:
getProperty在类中PropertySource.StubPropertySource- 参数:
name- the property to find- 另请参阅:
-