get<V> method

V get<V>(
  1. Object instance,
  2. String field
)

get the field value of a specific instance instance the instance field the field name

Implementation

V get<V>(Object instance, String field) {
  return _getField(field).getter(instance);
}