Uses of Interface
org.apache.commons.betwixt.strategy.PluralStemmer

Packages that use PluralStemmer
org.apache.commons.betwixt This package contains the main betwixt introspection code. 
org.apache.commons.betwixt.strategy This package contains a variety of plugin Strategy patterns that can be used to customize the default behaviours. 
 

Uses of PluralStemmer in org.apache.commons.betwixt
 

Fields in org.apache.commons.betwixt declared as PluralStemmer
private  PluralStemmer IntrospectionConfiguration.pluralStemmer
          The strategy used to detect matching singular and plural properties
 

Methods in org.apache.commons.betwixt that return PluralStemmer
protected  PluralStemmer IntrospectionConfiguration.createPluralStemmer()
          A Factory method to lazily create a new strategy to detect matching singular and plural properties.
protected  PluralStemmer XMLIntrospector.createPluralStemmer()
          Deprecated. 0.6 this method has been moved into IntrospectionConfiguration. Those who need to vary this should subclass that class instead
 PluralStemmer IntrospectionConfiguration.getPluralStemmer()
          Get singular and plural matching strategy.
 PluralStemmer XMLIntrospector.getPluralStemmer()
          Deprecated. 0.6 use getConfiguration().getPluralStemmer
 

Methods in org.apache.commons.betwixt with parameters of type PluralStemmer
 void IntrospectionConfiguration.setPluralStemmer(PluralStemmer pluralStemmer)
          Sets the strategy used to detect matching singular and plural properties
 void XMLIntrospector.setPluralStemmer(PluralStemmer pluralStemmer)
          Deprecated. 0.6 use getConfiguration().setPluralStemmer
 

Uses of PluralStemmer in org.apache.commons.betwixt.strategy
 

Classes in org.apache.commons.betwixt.strategy that implement PluralStemmer
 class DefaultPluralStemmer
          A default implementation of the plural name stemmer which tests for some common english plural/singular patterns and then uses a simple starts-with algorithm