Uses of Interface
org.miaixz.bus.setting.format.ElementFormatter
Packages that use ElementFormatter
Package
Description
Setting模块主要针对Properties文件读写做封装,同时定义一套自己的配置文件规范,实现兼容性良好的配置工具。
配置文件格式化封装
-
Uses of ElementFormatter in org.miaixz.bus.setting
Methods in org.miaixz.bus.setting that return types with arguments of type ElementFormatterModifier and TypeMethodDescriptionLoader.getCommentElementFormatterSupplier()Loader.getPropertyElementFormatterSupplier()Loader.getSectionElementFormatterSupplier()Methods in org.miaixz.bus.setting with parameters of type ElementFormatterModifier and TypeMethodDescriptionFactory.apply(ElementFormatter<IniComment> commentElementFormatter, ElementFormatter<IniSection> sectionElementFormatter, ElementFormatter<IniProperty> propertyElementFormatter) 通过三个字符获取一个iniFormatterMethod parameters in org.miaixz.bus.setting with type arguments of type ElementFormatterModifier and TypeMethodDescriptionvoidLoader.setCommentElementFormatterSupplier(Supplier<ElementFormatter<IniComment>> commentElementFormatterSupplier) voidLoader.setPropertyElementFormatterSupplier(Supplier<ElementFormatter<IniProperty>> propertyElementFormatterSupplier) voidLoader.setSectionElementFormatterSupplier(Supplier<ElementFormatter<IniSection>> sectionElementFormatterSupplier) -
Uses of ElementFormatter in org.miaixz.bus.setting.format
Classes in org.miaixz.bus.setting.format that implement ElementFormatterModifier and TypeClassDescriptionclassAbstractFormatter<E extends IniElement>将字符串值的格式设置为IniElement除了CommentElementFormatter之外,所有元素格式化程序都还需要注释元素格式化程序class将字符串值格式设置为IniCommentclass将字符串值格式设置为IniPropertyclass将字符串值格式设置为IniSectionFields in org.miaixz.bus.setting.format declared as ElementFormatterModifier and TypeFieldDescriptionprotected final ElementFormatter<IniComment> DefaultFormatter.commentElementFormatterprotected final ElementFormatter<IniProperty> DefaultFormatter.propertyElementFormatterprotected final ElementFormatter<IniSection> DefaultFormatter.sectionElementFormatterConstructors in org.miaixz.bus.setting.format with parameters of type ElementFormatterModifierConstructorDescriptionDefaultFormatter(ElementFormatter<IniComment> commentElementFormatter, ElementFormatter<IniSection> sectionElementFormatter, ElementFormatter<IniProperty> propertyElementFormatter)