All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.feilong.formatter.builder.BeanTypeFormatterBuilder Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
/*
 * Copyright (C) 2008 feilong
 *
 * 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.
 */
package com.feilong.formatter.builder;

import static com.feilong.core.Validator.isNullOrEmpty;
import static com.feilong.core.util.CollectionsUtil.newArrayList;
import static com.feilong.core.util.MapUtil.newLinkedHashMap;
import static com.feilong.lib.lang3.ArrayUtils.EMPTY_OBJECT_ARRAY;

import java.lang.reflect.Field;
import java.util.List;
import java.util.Map;

import com.feilong.core.bean.ConvertUtil;
import com.feilong.core.bean.PropertyUtil;
import com.feilong.core.lang.reflect.FieldUtil;
import com.feilong.formatter.entity.BeanFormatterConfig;
import com.feilong.formatter.entity.FormatterColumnEntity;

/**
 * List 里面元素是 bean对象 的相关构建.
 * 
 * @author feilong
 * @since 1.10.4
 */
public class BeanTypeFormatterBuilder extends AbstractFormatterBuilder{

    /*
     * (non-Javadoc)
     * 
     * @see com.feilong.formatter.builder.DataBuilder#build(java.lang.Object, java.util.List)
     */
    @Override
    public  Object[] buildLineData(T bean,List propertyNameList,BeanFormatterConfig beanFormatterConfig){
        if (isNullOrEmpty(bean)){
            return EMPTY_OBJECT_ARRAY;
        }

        //---------------------------------------------------------------
        Map propertyValueMap = newLinkedHashMap();

        //只 copy 要的属性名字
        PropertyUtil.copyProperties(propertyValueMap, bean, ConvertUtil.toStrings(propertyNameList));

        return buildLineData(propertyValueMap, beanFormatterConfig);
    }

    /**
     * Builds the formatter column entity list.
     *
     * @param 
     *            the generic type
     * @param bean
     *            the bean
     * @param beanFormatterConfig
     *            the bean formatter config
     * @return the list
     */
    @Override
    protected  List buildFormatterColumnEntityList(T bean,BeanFormatterConfig beanFormatterConfig){
        @SuppressWarnings("unchecked")
        Class klass = (Class) bean.getClass();

        List fieldsList = FieldUtil.getAllFieldList(klass, beanFormatterConfig.getExcludePropertyNames());

        List list = newArrayList();
        for (Field field : fieldsList){
            list.add(BeanTypeFormatterColumnEntityBuilder.buildFormatterColumnEntity(field));
        }
        return list;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy