Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a standard library (such as org.apache.commons.beanutils or java.beans) that will take a string field name and convert it to the standard method name? I'm looking all over and can't find a simple string conversion utility.

share|improve this question
1  
You can do that by yourself with 1 codeline. – RoflcoptrException Mar 31 '11 at 16:53
1  
+1, just what I was wondering. Even if it's trivial to write it yourself, it makes sense to use a standard lib utility if one exists. – Jonik Jan 11 '12 at 14:51

4 Answers

up vote 4 down vote accepted

A wild one-liner appeared!

String fieldToGetter(String name)
{
    return "get" + name.substring(0, 1).toUpperCase() + name.substring(1);
}
share|improve this answer
2  
+1 for this wild one – RoflcoptrException Mar 31 '11 at 16:59
3  
+0: unless the getter is an "isBooleanGetter" ;) – Peter Lawrey Mar 31 '11 at 17:01
1  
@Peter good point, though not everyone uses the isFoo() naming convention for boolean field getters. – Matt Ball Mar 31 '11 at 17:10
Actaully, I don't use the JavaBean getter/setters at all. I use public Type field() and public void field(Type field) – Peter Lawrey Mar 31 '11 at 17:12
So you could use reflection to check if it an boolean and adapt your code to use is instead of get – RoflcoptrException Mar 31 '11 at 17:55

The JavaBean introspector is possibly the best choice. It handles "is" getters for boolean types and "getters" which take an argument and setters with none or two arguments and other edge cases. It is nice for getting a list of JavaBean fields for a class.

Here is an example,

import java.beans.BeanInfo;
import java.beans.Introspector;
import java.beans.IntrospectionException;
import java.beans.PropertyDescriptor;

public class SimpleBean
{
    private final String name = "SimpleBean";
    private int size;

    public String getName()
    {
        return this.name;
    }

    public int getSize()
    {
        return this.size;
    }

    public void setSize( int size )
    {
        this.size = size;
    }

    public static void main( String[] args )
            throws IntrospectionException
    {
        BeanInfo info = Introspector.getBeanInfo( SimpleBean.class );
        for ( PropertyDescriptor pd : info.getPropertyDescriptors() )
            System.out.println( pd.getName() );
    }
}

This prints

class
name
size

class comes from getClass() inherited from Object

EDIT: to get the getter or setter and its name.

public static String findGetterName(Class clazz, String name) throws IntrospectionException, NoSuchFieldException, NoSuchMethodException {
    Method getter = findGetter(clazz, name);
    if (getter == null) throw new NoSuchMethodException(clazz+" has no "+name+" getter");
    return getter.getName();
}

public static Method findGetter(Class clazz, String name) throws IntrospectionException, NoSuchFieldException {
    BeanInfo info = Introspector.getBeanInfo(clazz);
    for ( PropertyDescriptor pd : info.getPropertyDescriptors() )
        if (name.equals(pd.getName())) return pd.getReadMethod();
    throw new NoSuchFieldException(clazz+" has no field "+name);
}

public static String findSetterName(Class clazz, String name) throws IntrospectionException, NoSuchFieldException, NoSuchMethodException {
    Method setter = findSetter(clazz, name);
    if (setter == null) throw new NoSuchMethodException(clazz+" has no "+name+" setter");
    return setter.getName();
}

public static Method findSetter(Class clazz, String name) throws IntrospectionException, NoSuchFieldException {
    BeanInfo info = Introspector.getBeanInfo(clazz);
    for ( PropertyDescriptor pd : info.getPropertyDescriptors() )
        if (name.equals(pd.getName())) return pd.getWriteMethod();
    throw new NoSuchFieldException(clazz+" has no field "+name);
}
share|improve this answer
1  
Perhaps you could provide a code example of using Introspector to get a method name from a field name? – Matt Ball Mar 31 '11 at 17:11
That's just the code from the tutorial you linked; show us how to write the method from String to String and you've got my +1. – Matt Ball Mar 31 '11 at 17:59
A more difficult problem is using the getter name to get the method which is actually trivial using this approach. – Peter Lawrey Apr 1 '11 at 7:56
String fieldToSetter(String name)
{
    return "set" + name.substring(0, 1).toUpperCase() + name.substring(1);
}

With copyright by Matt Ball

share|improve this answer
Is that a copy-paste-change-1-character version of my answer? :P – Matt Ball Mar 31 '11 at 16:58
I would have been able to write it by myself, but I didn't want to confuse the OP with different syntax :P – RoflcoptrException Mar 31 '11 at 16:59
Well how can I not upvote my own code? +1 ;-) – Matt Ball Mar 31 '11 at 17:04

You can use a PropertyDescriptor without an Inspector (which was suggested by Peter):

final PropertyDescriptor propertyDescriptor = 
    new PropertyDescriptor("name", MyBean.class);
System.out.println("getter: " + propertyDescriptor.getReadMethod().getName());
System.out.println("setter: " + propertyDescriptor.getWriteMethod().getName());
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.