Java Reflection Method Getter Invoke invokeGetter(Object getterOwner, Method method)

Here you can find the source of invokeGetter(Object getterOwner, Method method)

Description

invoke Getter

License

Apache License

Declaration

public static Object invokeGetter(Object getterOwner, Method method) 

Method Source Code


//package com.java2s;
/*//from  w  w  w  .j  a  v a  2  s  . c om
 * Copyright 2009-2010 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import java.lang.reflect.Method;

public class Main {
    public static Object invokeGetter(Object getterOwner, Method method) {
        try {
            return method.invoke(getterOwner);

        } catch (Exception e) {
            return null;
        }

    }
}

Related

  1. invokeGetMethod(Object obj, String getterName)
  2. invokeGetter(Method getter, Object object)
  3. invokeGetter(Object bean, Method getter)
  4. invokeGetter(Object entity, String propertyName)
  5. invokeGetter(Object o, String name, boolean forceAccess)
  6. invokeGetter(Object obj, String methodName)
  7. invokeGetter(Object obj, String methodName, int defaultValue)
  8. invokeGetter(Object object, String field)