Uses of Interface
org.miaixz.bus.setting.metric.ini.IniElement
Packages that use IniElement
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 for formatting and parsing lines within configuration files, specifically for the INI format.
Provides classes that model the structure of an INI configuration file, including sections, properties, and comments.
-
Uses of IniElement in org.miaixz.bus.setting
Methods in org.miaixz.bus.setting that return IniElementModifier and TypeMethodDescriptionFormat.formatLine(String line) Formats a raw line from an INI file into anIniElement. -
Uses of IniElement in org.miaixz.bus.setting.format
Classes in org.miaixz.bus.setting.format with type parameters of type IniElementModifier and TypeClassDescriptionclassAbstractFormatter<E extends IniElement>An abstract base class for formatters that convert string values intoIniElementobjects.interfaceElementFormatter<E extends IniElement>An interface for formatters that convert a string value from a configuration file into a specificIniElementtype.Methods in org.miaixz.bus.setting.format that return IniElementModifier and TypeMethodDescriptionDefaultFormatter.formatLine(String raw) Formats a raw line from an INI file into anIniElement. -
Uses of IniElement in org.miaixz.bus.setting.metric.ini
Subinterfaces of IniElement in org.miaixz.bus.setting.metric.iniModifier and TypeInterfaceDescriptioninterfaceIni file's comment.interfaceIni file's parameters, likeproperty1=value1interfaceIni file's SectionClasses in org.miaixz.bus.setting.metric.ini that implement IniElementModifier and TypeClassDescriptionclassan abstract class forIniElement.classIni file's comment.classIni file's parameters, likeproperty1=value1classIni file's SectionMethod parameters in org.miaixz.bus.setting.metric.ini with type arguments of type IniElementModifier and TypeMethodDescriptionINI.plus(List<IniElement> elements) Appends a list ofIniElements to this builder.Constructor parameters in org.miaixz.bus.setting.metric.ini with type arguments of type IniElementModifierConstructorDescriptionINI(Supplier<List<IniElement>> listSupplier) Constructs a new INI builder with a custom list supplier.IniSetting(Collection<? extends IniElement> c) Constructs a list containing the elements of the specified collection.