panda.bean.handler.CollectionBeanHandler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of panda-core Show documentation
Show all versions of panda-core Show documentation
Panda Core is the core module of Panda Framework, it contains commonly used utility classes similar to apache-commons.
package panda.bean.handler;
import java.lang.reflect.Type;
import java.util.Collection;
import java.util.Iterator;
import panda.bean.Beans;
import panda.lang.Strings;
import panda.lang.reflect.Types;
/**
*
* @param class type
*/
@SuppressWarnings("rawtypes")
public class CollectionBeanHandler extends AbstractArrayBeanHandler {
protected Type elementType;
/**
* Constructor
* @param beans bean handler factory
* @param type bean type
*/
public CollectionBeanHandler(Beans beans, Type type) {
super(beans, type);
elementType = Types.getCollectionElementType(type);
}
/**
* get write property names
* @param array bean object (can be null)
* @return property names
*/
@Override
public String[] getWritePropertyNames(T array) {
return Strings.EMPTY_ARRAY;
}
/**
* is the property writable
* @param array bean object (can be null)
* @param propertyName property name
* @return property writable
*/
public boolean canWriteProperty(T array, String propertyName) {
return false;
}
@Override
protected Type getElementType() {
return elementType;
}
@Override
protected int getSize(T coll) {
return coll.size();
}
@Override
protected Object getElement(T coll, int index) {
Iterator it = coll.iterator();
int n = 0;
for ( ; it.hasNext() && n < index; it.next(), n++) {}
if (n != index || !it.hasNext()) {
//this.noSuchPropertyException(String.valueOf(index));
return null;
}
return it.next();
}
@Override
protected boolean setElement(T list, int index, Object value) {
return false;
}
}