The Spring Framework

Uses of Class
org.springframework.beans.factory.config.ConstructorArgumentValues.ValueHolder

Packages that use ConstructorArgumentValues.ValueHolder
org.springframework.beans.factory.config SPI interfaces and configuration-related convenience classes for bean factories. 
 

Uses of ConstructorArgumentValues.ValueHolder in org.springframework.beans.factory.config
 

Methods in org.springframework.beans.factory.config that return ConstructorArgumentValues.ValueHolder
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.ValueHolder.copy()
          Create a copy of this ValueHolder: that is, an independent ValueHolder instance with the same contents.
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.getArgumentValue(int index, Class requiredType)
          Look for an argument value that either corresponds to the given index in the constructor argument list or generically matches by type.
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.getArgumentValue(int index, Class requiredType, Set usedValueHolders)
          Look for an argument value that either corresponds to the given index in the constructor argument list or generically matches by type.
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.getGenericArgumentValue(Class requiredType)
          Look for a generic argument value that matches the given type.
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.getGenericArgumentValue(Class requiredType, Set usedValueHolders)
          Look for the next generic argument value that matches the given type, ignoring argument values that have already been used in the current resolution process.
 ConstructorArgumentValues.ValueHolder ConstructorArgumentValues.getIndexedArgumentValue(int index, Class requiredType)
          Get argument value for the given index in the constructor argument list.
 

Methods in org.springframework.beans.factory.config with parameters of type ConstructorArgumentValues.ValueHolder
 void ConstructorArgumentValues.addGenericArgumentValue(ConstructorArgumentValues.ValueHolder newValue)
          Add generic argument value to be matched by type.
 void ConstructorArgumentValues.addIndexedArgumentValue(int index, ConstructorArgumentValues.ValueHolder newValue)
          Add argument value for the given index in the constructor argument list.
 


The Spring Framework

Copyright © 2002-2007 The Spring Framework.