Interface IPropertyReflectionAwareModel<T>

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.lang.reflect.Field getPropertyField()
      Gets the field of model property or null if the field doesn't exist.
      java.lang.reflect.Method getPropertyGetter()
      Gets the getter method of model property or null if the method doesn't exist.
      java.lang.reflect.Method getPropertySetter()
      Gets the setter method of model property or null if the method doesn't exist.
    • Method Detail

      • getPropertyField

        java.lang.reflect.Field getPropertyField()
        Gets the field of model property or null if the field doesn't exist.
        Returns:
        the property field
      • getPropertyGetter

        java.lang.reflect.Method getPropertyGetter()
        Gets the getter method of model property or null if the method doesn't exist.
        Returns:
        Method or null
      • getPropertySetter

        java.lang.reflect.Method getPropertySetter()
        Gets the setter method of model property or null if the method doesn't exist.
        Returns:
        Method or null