Class Introspector.IdentityConvertor

  • All Implemented Interfaces:
    TypeConvertor
    Enclosing class:
    Introspector

    class Introspector.IdentityConvertor
    extends java.lang.Object
    implements TypeConvertor
    A special TypeConvertor that simply returns the object given. This is used for preventing the FieldHandlerImpl from using a CollectionHandler when getValue is called.
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.lang.Object convert​(java.lang.Object object)
      Convert the object from one type to another.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • IdentityConvertor

        IdentityConvertor()
    • Method Detail

      • convert

        public java.lang.Object convert​(java.lang.Object object)
        Description copied from interface: TypeConvertor
        Convert the object from one type to another.
        Specified by:
        convert in interface TypeConvertor
        Parameters:
        object - The object to convert.
        Returns:
        The converted object.