Interface Getter

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface Getter
get方法
Author:
Maning
  • Method Summary

    Modifier and Type
    Method
    Description
    get(Object entity)
    获取实例对应属性的值
  • Method Details

    • get

      Object get(Object entity)
      获取实例对应属性的值
      Parameters:
      entity - 实体类实例
      Returns: