Uses of Interface
org.springframework.binding.convert.ConversionService

Packages that use ConversionService
org.springframework.binding.convert.support Supporting type converter implementations that are generically applicable and frequently used. 
org.springframework.binding.mapping Support for mapping attribute values between data structures. 
org.springframework.binding.method Method binding support for invoking abritrary methods on target beans. 
 

Uses of ConversionService in org.springframework.binding.convert.support
 

Classes in org.springframework.binding.convert.support that implement ConversionService
 class CompositeConversionService
          A conversion service that delegates to an ordered chain of other conversion services.
 class DefaultConversionService
          Default, local implementation of a conversion service.
 class GenericConversionService
          Base implementation of a conversion service.
 

Methods in org.springframework.binding.convert.support that return ConversionService
 ConversionService ConversionServiceAwareConverter.getConversionService()
          Returns the conversion service used.
 ConversionService[] CompositeConversionService.getConversionServices()
          Returns the conversion services in the chain managed by this composite conversion service.
 ConversionService GenericConversionService.getParent()
          Returns the parent of this conversion service.
 

Methods in org.springframework.binding.convert.support with parameters of type ConversionService
 void ConversionServiceAwareConverter.setConversionService(ConversionService conversionService)
           
 void ConversionServiceAware.setConversionService(ConversionService conversionService)
          Set the conversion service this object should be made aware of (as it presumably depends on it).
 void CustomConverterConfigurer.setConversionService(ConversionService conversionService)
          Create a new configurer.
 void GenericConversionService.setParent(ConversionService parent)
          Set the parent of this conversion service.
 

Constructors in org.springframework.binding.convert.support with parameters of type ConversionService
CompositeConversionService(ConversionService[] conversionServices)
          Create a new composite conversion service.
ConversionServiceAwareConverter(ConversionService conversionService)
          Create a converter using given conversion service.
 

Uses of ConversionService in org.springframework.binding.mapping
 

Methods in org.springframework.binding.mapping with parameters of type ConversionService
 void MappingBuilder.setConversionService(ConversionService conversionService)
          Sets the conversion service that will convert the object returned by evaluating the source expression to the MappingBuilder.to(Class) type if necessary.
 

Uses of ConversionService in org.springframework.binding.method
 

Methods in org.springframework.binding.method with parameters of type ConversionService
 void MethodInvoker.setConversionService(ConversionService conversionService)
          Sets the conversion service to convert argument values as needed.
 

Constructors in org.springframework.binding.method with parameters of type ConversionService
TextToMethodSignature(ConversionService conversionService)
          Create a new converter that converts strings to MethodSignature objects.
 



Copyright © 2009 Spring Framework. All Rights Reserved.