Package org.ocpsoft.rewrite.config
Interface ConfigurationRuleParameterMatches
- All Superinterfaces:
Configuration,ConfigurationBuilderRoot,ConfigurationRuleBuilderOtherwise,ConfigurationRuleBuilderWithMetadata
- All Known Implementing Classes:
ConfigurationRuleParameterBuilder
public interface ConfigurationRuleParameterMatches
extends ConfigurationBuilderRoot, ConfigurationRuleBuilderOtherwise
A
ConfigurationRuleParameter with a matches clause.- Author:
- Lincoln Baxter, III
-
Method Summary
Modifier and TypeMethodDescriptionconfiguredBy(ParameterConfigurator configurator) Add aParameterConfiguratorwith which thisParameterwill be configured.constrainedBy(Constraint<String> pattern) Add aConstraintto which this objectIMPLTYPEmust match.convertedBy(Converter<?> converter) transposedBy(Transposition<String> transposition) Add aTranspositionto thisIMPLTYPE; it will executed in the order in which it was added.validatedBy(Validator<?> validator) Configure theParameterwith the given name.Methods inherited from interface org.ocpsoft.rewrite.config.Configuration
getRulesMethods inherited from interface org.ocpsoft.rewrite.config.ConfigurationBuilderRoot
addRule, addRuleMethods inherited from interface org.ocpsoft.rewrite.config.ConfigurationRuleBuilderOtherwise
withId, withPriorityMethods inherited from interface org.ocpsoft.rewrite.config.ConfigurationRuleBuilderWithMetadata
withMetadata
-
Method Details
-
where
Configure theParameterwith the given name.- Specified by:
wherein interfaceConfigurationRuleBuilderOtherwise
-
bindsTo
-
convertedBy
-
validatedBy
-
constrainedBy
Add aConstraintto which this objectIMPLTYPEmust match. -
transposedBy
Add aTranspositionto thisIMPLTYPE; it will executed in the order in which it was added. -
configuredBy
Add aParameterConfiguratorwith which thisParameterwill be configured.
-