Interface PropertyAccessor

All Known Implementing Classes:
ClassFieldAccessor, DefaultPropertyAccessor, GetterSetterAccessor, MapEntryAccessor

public interface PropertyAccessor
An PropertyAccessor provides a strategy to get and set a value.
Since:
0.6
  • Method Summary

    Modifier and Type
    Method
    Description
    The strategy to get a value.
    void
    The strategy to set a value.
  • Method Details

    • getValue

      Object getValue()
      The strategy to get a value.
      Returns:
      The value got.
    • setValue

      void setValue(Object value)
      The strategy to set a value.
      Parameters:
      value - The value to be set.