Uses of Class
org.apache.commons.betwixt.strategy.CollectiveTypeStrategy

Packages that use CollectiveTypeStrategy
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. 
org.apache.commons.betwixt.strategy.impl   
 

Uses of CollectiveTypeStrategy in org.apache.commons.betwixt
 

Fields in org.apache.commons.betwixt declared as CollectiveTypeStrategy
private  CollectiveTypeStrategy IntrospectionConfiguration.collectiveTypeStrategy
          Strategy used for determining which types are collective
 

Methods in org.apache.commons.betwixt that return CollectiveTypeStrategy
 CollectiveTypeStrategy IntrospectionConfiguration.getCollectiveTypeStrategy()
          Gets the strategy used to determine which types are collective.
 

Methods in org.apache.commons.betwixt with parameters of type CollectiveTypeStrategy
 void IntrospectionConfiguration.setCollectiveTypeStrategy(CollectiveTypeStrategy collectiveTypeStrategy)
          Sets the strategy used to determine which types are collective.
 

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

Subclasses of CollectiveTypeStrategy in org.apache.commons.betwixt.strategy
static class CollectiveTypeStrategy.Default
          Default collective type strategy
 

Fields in org.apache.commons.betwixt.strategy declared as CollectiveTypeStrategy
static CollectiveTypeStrategy CollectiveTypeStrategy.DEFAULT
          Default collective type strategy
 

Uses of CollectiveTypeStrategy in org.apache.commons.betwixt.strategy.impl
 

Subclasses of CollectiveTypeStrategy in org.apache.commons.betwixt.strategy.impl
 class OverrideCollectiveTypeStategy
          Strategy that allows specific classes to be marked as collective (OverrideCollectiveTypeStategy.overrideCollective(Class)) or not collective (OverrideCollectiveTypeStategy.overrideNotCollective(Class)).
 

Fields in org.apache.commons.betwixt.strategy.impl declared as CollectiveTypeStrategy
private  CollectiveTypeStrategy OverrideCollectiveTypeStategy.delegate
           
 

Constructors in org.apache.commons.betwixt.strategy.impl with parameters of type CollectiveTypeStrategy
OverrideCollectiveTypeStategy(CollectiveTypeStrategy delegate)
          Constructs a strategy which delegates all those that it does not override.