Java org.hibernate.internal.util.config ConfigurationHelper fields, constructors, methods, implement or subclass

Example usage for Java org.hibernate.internal.util.config ConfigurationHelper fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.hibernate.internal.util.config ConfigurationHelper.

The text is from its open source code.

Method

StringextractPropertyValue(String propertyName, Properties properties)
Extract a property value by name from the given properties object.
StringextractPropertyValue(String propertyName, Map properties)
Extract a property value by name from the given properties object.
booleangetBoolean(String name, Map values, boolean defaultValue)
Get the config value as a boolean.
booleangetBoolean(String name, Map values)
Get the config value as a boolean (default of false)
intgetInt(String name, Map values, int defaultValue)
Get the config value as an int
IntegergetInteger(String name, Map values)
Get the config value as an Integer
longgetLong(String name, Map values, int defaultValue)
StringgetString(String name, Map values, String defaultValue)
Get the config value as a String
StringgetString(String name, Map values)
Get the config value as a String
StringresolvePlaceHolder(String property)
Handles interpolation processing for a single property.
voidresolvePlaceHolders(Map configurationValues)
Handles interpolation processing for all entries in a properties object.
String[]toStringArray(String propertyName, String delim, Properties properties)
Get a property value as a string array.