Interface PropertyResolver.IGetAndSet

All Known Implementing Classes:
PropertyResolver.AbstractGetAndSet
Enclosing class:
PropertyResolver

public static interface PropertyResolver.IGetAndSet
A property to get and set.
Author:
jcompagner
  • Method Details

    • getValue

      Parameters:
      object - The object where the value must be taken from.
      Returns:
      The value of this property
    • getTargetClass

      Returns:
      The target class of the object that as to be set.
    • newValue

      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.
    • setValue

      void setValue(Object object, Object value, PropertyResolverConverter converter)
      Parameters:
      object -
      value -
      converter -
    • getField

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

      Returns:
      Getter method or null if there is no getter
    • getSetter

      Returns:
      Setter of null if there is no setter