Class ToAnyConverter<T>

java.lang.Object
org.apache.cayenne.reflect.Converter<T>
org.apache.cayenne.reflect.ToAnyConverter<T>

public class ToAnyConverter<T> extends Converter<T>
Can convert to any class that has a constructor that takes a single Object or a single String parameter.
  • Constructor Details

    • ToAnyConverter

      public ToAnyConverter()
  • Method Details

    • convert

      protected T convert(Object value, Class<T> type)
      Description copied from class: Converter
      Converts object to supported class without doing any type checking.
      Specified by:
      convert in class Converter<T>
      Parameters:
      value - the object to convert; the source
      type - the Class to convert the value to; the destination type
      Returns:
      an object of type @code{type}. If the conversion fails an exception will be thrown. If value is null then the result will be null.