If your bean is something with a fluent setter like ```java class MyDataRow { String name; public String getName(){ return name; } public MyDataRow setName( String name ){ this.name = name; return this; } } ``` it won't be recognized as a valid field and SKIPPed by BeanProperties.parseBean(Class beanClass).