パッケージ org.postgresql.util
クラス ExpressionProperties
- すべての実装されたインタフェース:
Serializable
,Cloneable
,Map<Object,
Object>
- 関連項目:
-
コンストラクタの概要
コンストラクタコンストラクタ説明ExpressionProperties
(Properties... defaults) Creates an empty property list with the specified defaults. -
メソッドの概要
修飾子とタイプメソッド説明@Nullable String
getProperty
(String key) Returns property value with all${propKey}
like references replaced with the value of the relevant property with recursive resolution.@PolyNull String
getProperty
(String key, @PolyNull String defaultValue) @Nullable String
Returns raw value of a property without any replacements.クラスから継承されたメソッド java.util.Properties
clear, clone, compute, computeIfAbsent, computeIfPresent, contains, containsKey, containsValue, elements, entrySet, equals, forEach, get, getOrDefault, hashCode, isEmpty, keys, keySet, list, list, load, load, loadFromXML, merge, propertyNames, put, putAll, putIfAbsent, rehash, remove, remove, replace, replace, replaceAll, save, setProperty, size, store, store, storeToXML, storeToXML, storeToXML, stringPropertyNames, toString, values
-
コンストラクタの詳細
-
ExpressionProperties
Creates an empty property list with the specified defaults.- パラメータ:
defaults
- java.util.Properties
-
-
メソッドの詳細
-
getProperty
Returns property value with all
${propKey}
like references replaced with the value of the relevant property with recursive resolution.The method returns
null
if the property is not found.- オーバーライド:
getProperty
クラス内Properties
- パラメータ:
key
- the property key.- 戻り値:
- the value in this property list with the specified key value.
-
getProperty
- オーバーライド:
getProperty
クラス内Properties
-
getRawPropertyValue
Returns raw value of a property without any replacements.- パラメータ:
key
- property name- 戻り値:
- raw property value
-