Class ConversionServiceConverterManager

    • Constructor Detail

      • ConversionServiceConverterManager

        public ConversionServiceConverterManager​(org.springframework.core.convert.support.GenericConversionService conversionService)
      • ConversionServiceConverterManager

        public ConversionServiceConverterManager()
    • Method Detail

      • canConvert

        public boolean canConvert​(java.lang.Class<?> fromClass,
                                  java.lang.String syntax,
                                  java.lang.Class<?> toClass)
        Description copied from interface: ConverterManager
        Determine whether this converter manager is able to carry out a specified conversion.
        Specified by:
        canConvert in interface ConverterManager
        Parameters:
        fromClass - Convert from the fromClass.
        syntax - Using the LDAP syntax (may be null).
        toClass - To the toClass.
        Returns:
        True if the conversion is supported, false otherwise.
      • convert

        public <T> T convert​(java.lang.Object source,
                             java.lang.String syntax,
                             java.lang.Class<T> toClass)
        Description copied from interface: ConverterManager
        Convert a given source object with an optional LDAP syntax to an instance of a given class.
        Specified by:
        convert in interface ConverterManager
        Type Parameters:
        T - The class to convert to.
        Parameters:
        source - The object to convert.
        syntax - The LDAP syntax to use (may be null).
        toClass - The class to convert to.
        Returns:
        The converted object.