Java Reflection Method Setter Get getSetters(Class clazz)

Here you can find the source of getSetters(Class clazz)

Description

get a map of public setters (propertyName -> Method)

License

Apache License

Parameter

Parameter Description
clazz a parameter

Declaration

public static Map<String, Method> getSetters(Class<?> clazz) 

Method Source Code


//package com.java2s;
/*/*from  www.ja  v  a2 s .  co  m*/
 * Copyright 2008-2009 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;
import java.util.HashMap;
import java.util.Map;

public class Main {
    /**
     * get a map of public setters (propertyName -> Method)
     * 
     * @param clazz
     * @return
     */
    public static Map<String, Method> getSetters(Class<?> clazz) {
        Map<String, Method> setters = new HashMap<String, Method>();
        Method[] methods = clazz.getMethods();
        for (Method method : methods) {
            String methodName = method.getName();
            if (method.getParameterTypes().length == 1 && methodName.startsWith("set") && methodName.length() > 3
                    && method.getReturnType() == Void.TYPE) {
                String propertyName = methodName.substring(3, 4).toLowerCase();
                if (methodName.length() > 4) {
                    propertyName += methodName.substring(4);
                }
                setters.put(propertyName, method);
            }
        }
        return setters;
    }
}

Related

  1. getSetters(Class clazz)
  2. getSetters(Class klass)
  3. getSetters(Class klass)
  4. getSetters(Class c)
  5. getSetters(Class clazz)
  6. getSetters(Class klass)
  7. getSetters(Object obj)
  8. getSettersForType(Class clazz, String typeName)
  9. getSetterShorthandName(Method method)