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