Interface PropertyResolver.IGetAndSet

    • Method Detail

      • getValue

        Object getValue​(Object object)
        Parameters:
        object - The object where the value must be taken from.
        Returns:
        The value of this property
      • getTargetClass

        Class<?> getTargetClass()
        Returns:
        The target class of the object that as to be set.
      • newValue

        Object newValue​(Object object)
        Parameters:
        object - The object where the new value must be set on.
        Returns:
        The new value for the property that is set back on that object.
      • getField

        Field getField()
        Returns:
        Field or null if there is no field
      • getGetter

        Method getGetter()
        Returns:
        Getter method or null if there is no getter
      • getSetter

        Method getSetter()
        Returns:
        Setter of null if there is no setter