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

com.feilong.formatter.builder.FormatterColumnEntityListSorter 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.SortUtil.sortList;

import java.util.Comparator;
import java.util.List;

import com.feilong.core.util.comparator.BeanComparatorUtil;
import com.feilong.formatter.entity.BeanFormatterConfig;
import com.feilong.formatter.entity.FormatterColumnEntity;
import com.feilong.core.Validate;

/**
 * 用来给 {@code List formatterColumnEntityList} 排序的工具类.
 * 
 * @author feilong
 * @since 1.10.6
 */
class FormatterColumnEntityListSorter{

    /** 先按照order进行排序,如果相同按照属性名字进行排序. */
    private static final Comparator CHAINED_COMPARATOR = BeanComparatorUtil
                    .chainedComparator("order", "propertyName");

    //---------------------------------------------------------------

    /** Don't let anyone instantiate this class. */
    private FormatterColumnEntityListSorter(){
        //AssertionError不是必须的. 但它可以避免不小心在类的内部调用构造器. 保证该类在任何情况下都不会被实例化.
        //see 《Effective Java》 2nd
        throw new AssertionError("No " + getClass().getName() + " instances for you!");
    }

    //---------------------------------------------------------------

    /**
     * Sort formatter column entity list.
     * 
     * 

说明:

*
*
    *
  1. 如果没有指定排序属性,那么默认按照 order值和属性名字排序
  2. *
  3. 否则按照属性名字的顺序排序
  4. *
*
* * @param formatterColumnEntityList * the formatter column entity list * @param beanFormatterConfig * the bean formatter config * @return 如果 beanFormatterConfig 是null,抛出 {@link NullPointerException}
*/ static List sortFormatterColumnEntityList( List formatterColumnEntityList, BeanFormatterConfig beanFormatterConfig){ Validate.notNull(beanFormatterConfig, "beanFormatterConfig can't be null!"); //----------------------------------------------------------------------------------- String[] sorts = beanFormatterConfig.getSorts(); //如果没有指定排序属性,那么默认按照 order值和属性名字排序 if (isNullOrEmpty(sorts)){ return sortList(formatterColumnEntityList, CHAINED_COMPARATOR); } //----------------------------------------------------------------------------------- //否则按照属性名字的顺序排序 Comparator propertyComparator = BeanComparatorUtil.propertyComparator("propertyName", sorts); return sortList(formatterColumnEntityList, propertyComparator, CHAINED_COMPARATOR); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy