Uses of Class
org.miaixz.bus.setting.metric.ini.INI
Packages that use INI
Package
Description
Provides classes that model the structure of an INI configuration file, including sections, properties, and comments.
-
Uses of INI in org.miaixz.bus.setting.metric.ini
Methods in org.miaixz.bus.setting.metric.ini that return INIModifier and TypeMethodDescriptionINI.commentCreator(IniCommentCreator iniCommentCreator) Sets the creator function for comments.INI.plus(List<IniElement> elements) Appends a list ofIniElements to this builder.Appends all elements from another INI builder to this one.INI.plusComment(String value) Adds a comment line.INI.plusProperties(Properties properties) Adds all properties from aPropertiesobject to the current section.INI.plusProperties(Properties properties, String commentValue) Adds all properties from aPropertiesobject to the current section, each with the same comment string.INI.plusProperties(Properties properties, IniComment comment) Adds all properties from aPropertiesobject to the current section, each with the same comment.INI.plusProperty(String key, String value) Adds a new property (key-value pair) to the current section.INI.plusProperty(String key, String value, String commentValue) Adds a new property to the current section with a comment string.INI.plusProperty(String key, String value, IniComment comment) Adds a new property to the current section with a comment.INI.plusSection(String value) Adds a new section.INI.plusSection(String value, String commentValue) Adds a new section with a comment string.INI.plusSection(String value, IniComment comment) Adds a new section with a comment.INI.propertyCreator(IniPropertyCreator iniPropertyCreator) Sets the creator function for properties.INI.sectionCreator(IniSectionCreator iniSectionCreator) Sets the creator function for sections.INI.skipLine(int length) Skips a specified number of lines by adding null elements, which represent empty lines.Methods in org.miaixz.bus.setting.metric.ini with parameters of type INI