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 CsvNavigateCommand
Factory method for creating a CSV navigation command with typed column selector and rule.static CsvNavigateCommand
Deprecated.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 JsonNavigateCommand
Factory 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 XmlNavigateCommand
Factory 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
データベースからデータを取得するルールclass
Pass-through rule implementationclass
HikariCP対応のデータベースフェッチルール -
Uses of IRule in com.streamconverter.command.rule.impl.casing
Classes in com.streamconverter.command.rule.impl.casing that implement IRuleModifier and TypeClassDescriptionclass
Transforms camelCase strings to snake_case format.class
Transforms 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 TypeClassDescriptionclass
Chains 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 ChainRule
Creates 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 TypeClassDescriptionclass
Converts strings to lowercase.class
Trims leading and trailing whitespace from strings.
CsvNavigateCommand.create(CSVPath, IRule)
instead