Uses of Class
org.miaixz.bus.setting.metric.props.Props
Packages that use Props
Package
Description
Provides a comprehensive toolkit for handling configuration files, including an enhanced
.properties-style
format (.setting) with support for grouping and variable substitution, as well as INI and YAML file support.Provides classes that model the structure of an INI configuration file, including sections, properties, and comments.
Provides a wrapper class for reading and handling
.properties files with enhanced features.-
Uses of Props in org.miaixz.bus.setting
Methods in org.miaixz.bus.setting that return Props -
Uses of Props in org.miaixz.bus.setting.metric.ini
Methods in org.miaixz.bus.setting.metric.ini that return PropsModifier and TypeMethodDescriptionIniSetting.toProperties()Converts the INI data into aPropsobject using '.' as the delimiter between section names and keys.IniSetting.toProperties(String delimiter) Converts the INI data into aPropsobject. -
Uses of Props in org.miaixz.bus.setting.metric.props
Methods in org.miaixz.bus.setting.metric.props that return PropsModifier and TypeMethodDescriptionstatic PropsGets a cachedPropsinstance for a given resource name.static PropsProps.getFirstFound(String... names) Gets the firstPropsinstance that can be successfully loaded from a list of resource names.static PropsProps.getProperties()Gets aPropsinstance containing the current system properties.Props.getSubProps(String prefix) Extracts a subset of properties that share a common prefix.static PropsProps.of()Creates a new, emptyPropsobject.static PropsCreates aPropsobject by loading a file from the classpath.static PropsCreates aPropsobject by loading a file from the classpath with a specified charset.static PropsCreates a copy of an existingPropsobject.Props.setFields(org.miaixz.bus.core.center.function.SupplierX<?>... fields) Sets multiple properties using an array of lambda method reference suppliers.Props.toProperties()Creates a newPropsinstance containing all the properties from this one.Methods in org.miaixz.bus.setting.metric.props with parameters of type Props