类 JvmArgsPropertySource
- java.lang.Object
-
- com.alibaba.nacos.client.env.AbstractPropertySource
-
- com.alibaba.nacos.client.env.JvmArgsPropertySource
-
class JvmArgsPropertySource extends AbstractPropertySource
-
-
字段概要
字段 修饰符和类型 字段 说明 private java.util.Propertiesproperties
-
构造器概要
构造器 构造器 说明 JvmArgsPropertySource()
-
方法概要
所有方法 实例方法 具体方法 修饰符和类型 方法 说明 (专用程序包) java.util.PropertiesasProperties()to properties.(专用程序包) booleancontainsKey(java.lang.String key)Tests if the specified object is a key in this propertySource.(专用程序包) java.lang.StringgetProperty(java.lang.String key)get property, if the value can not be got by the special key, the null will be returned.(专用程序包) SourceTypegetType()get property's type.
-
-
-
方法详细资料
-
getType
SourceType getType()
从类复制的说明:AbstractPropertySourceget property's type.- 指定者:
getType在类中AbstractPropertySource- 返回:
- name
-
getProperty
java.lang.String getProperty(java.lang.String key)
从类复制的说明:AbstractPropertySourceget 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
-
containsKey
boolean containsKey(java.lang.String key)
从类复制的说明:AbstractPropertySourceTests if the specified object is a key in this propertySource.- 指定者:
containsKey在类中AbstractPropertySource- 参数:
key- key – possible key- 返回:
- true if and only if the specified object is a key in this propertySource, false otherwise.
-
asProperties
java.util.Properties asProperties()
从类复制的说明:AbstractPropertySourceto properties.- 指定者:
asProperties在类中AbstractPropertySource- 返回:
- properties
-
-