Uses of Interface
com.streamconverter.command.rule.IRule
Packages that use IRule
Package
Description
-
Uses of IRule in com.streamconverter.command.impl.csv
Methods in com.streamconverter.command.impl.csv with parameters of type IRuleModifier and TypeMethodDescriptionstatic CsvNavigateCommandFactory method for creating a CSV navigation command with typed column selector and rule.static CsvNavigateCommandDeprecated.Constructors in com.streamconverter.command.impl.csv with parameters of type IRuleModifierConstructorDescriptionCsvNavigateCommand(CSVPath columnSelector, IRule rule) Constructor for CSV navigation with typed column selector and transformation rule.CsvNavigateCommand(TreePath treePath, IRule rule) Constructor for CSV navigation with TreePath (for compatibility).CsvNavigateCommand(String columnSelector, IRule rule) Deprecated.UseCsvNavigateCommand(CSVPath, IRule)instead -
Uses of IRule in com.streamconverter.command.impl.json
Methods in com.streamconverter.command.impl.json with parameters of type IRuleModifier and TypeMethodDescriptionstatic JsonNavigateCommandFactory method for creating a JSON navigation command with TreePath and rule.Constructors in com.streamconverter.command.impl.json with parameters of type IRuleModifierConstructorDescriptionJsonNavigateCommand(TreePath treePath, IRule rule) Constructor for JSON navigation with TreePath selector and transformation rule. -
Uses of IRule in com.streamconverter.command.impl.xml
Methods in com.streamconverter.command.impl.xml with parameters of type IRuleModifier and TypeMethodDescriptionstatic XmlNavigateCommandFactory method for creating an XML navigation command with TreePath and rule.Constructors in com.streamconverter.command.impl.xml with parameters of type IRuleModifierConstructorDescriptionConvertCommand(IRule rule, TreePath treePath) デフォルトコンストラクタXmlNavigateCommand(TreePath treePath, IRule rule) Constructor for XML navigation with TreePath selector and transformation rule. -
Uses of IRule in com.streamconverter.command.rule
Classes in com.streamconverter.command.rule that implement IRuleModifier and TypeClassDescriptionclassデータベースからデータを取得するルールclassMDC設定用のルールclassPass-through rule implementationclassHikariCP対応のデータベースフェッチルール -
Uses of IRule in com.streamconverter.command.rule.impl.casing
Classes in com.streamconverter.command.rule.impl.casing that implement IRuleModifier and TypeClassDescriptionclassTransforms camelCase strings to snake_case format.classTransforms snake_case strings to camelCase format. -
Uses of IRule in com.streamconverter.command.rule.impl.composite
Classes in com.streamconverter.command.rule.impl.composite that implement IRuleModifier and TypeClassDescriptionclassChains multiple transformation rules to be applied in sequence.Methods in com.streamconverter.command.rule.impl.composite that return types with arguments of type IRuleModifier and TypeMethodDescriptionChainRule.getRules()Gets an unmodifiable view of the rules in this chain.Methods in com.streamconverter.command.rule.impl.composite with parameters of type IRuleModifier and TypeMethodDescriptionAdds a rule to the end of the chain.Adds multiple rules to the end of the chain.ChainRule.Builder.insertRule(int index, IRule rule) Inserts a rule at the specified position in the chain.static ChainRuleCreates a ChainRule with the specified rules.Method parameters in com.streamconverter.command.rule.impl.composite with type arguments of type IRule -
Uses of IRule in com.streamconverter.command.rule.impl.string
Classes in com.streamconverter.command.rule.impl.string that implement IRuleModifier and TypeClassDescriptionclassConverts strings to lowercase.classTrims leading and trailing whitespace from strings.
CsvNavigateCommand.create(CSVPath, IRule)instead