net.gdface.facelog.dborm.log.FlLogLightComparator Maven / Gradle / Ivy
// ______________________________________________________
// Generated by sql2java - https://github.com/10km/sql2java-2-6-7 (custom branch)
// modified by guyadong from
// sql2java original version https://sourceforge.net/projects/sql2java/
// JDBC driver used at code generation time: com.mysql.jdbc.Driver
// template: comparator.java.vm
// ______________________________________________________
package net.gdface.facelog.dborm.log;
import java.util.Comparator;
import net.gdface.facelog.dborm.Constant;
/**
* Comparator class is used to sort the FlLogLightBean objects.
* @author sql2java
*/
public class FlLogLightComparator implements Comparator,Constant
{
/**
* Holds the field on which the comparison is performed.
*/
private int iType;
/**
* Value that will contain the information about the order of the sort: normal or reversal.
*/
private boolean bReverse;
/**
* Constructor class for FlLogLightComparator.
*
* Example:
*
* Arrays.sort(pArray, new FlLogLightComparator(Constant.FL_LOG_LIGHT_ID_ID, bReverse));
*
* @param iType the field from which you want to sort
*
* Possible values are:
*
* - {@link Constant#FL_LOG_LIGHT_ID_ID}
*
- {@link Constant#FL_LOG_LIGHT_ID_PERSON_ID}
*
- {@link Constant#FL_LOG_LIGHT_ID_NAME}
*
- {@link Constant#FL_LOG_LIGHT_ID_PAPERS_TYPE}
*
- {@link Constant#FL_LOG_LIGHT_ID_PAPERS_NUM}
*
- {@link Constant#FL_LOG_LIGHT_ID_VERIFY_TIME}
*
*/
public FlLogLightComparator(int iType)
{
this(iType, false);
}
/**
* Constructor class for FlLogLightComparator.
*
* Example:
*
* Arrays.sort(pArray, new FlLogLightComparator(Constant.FL_LOG_LIGHT_ID_ID, bReverse));
*
* @param iType the field from which you want to sort.
*
* Possible values are:
*
* - {@link Constant#FL_LOG_LIGHT_ID_ID})
*
- {@link Constant#FL_LOG_LIGHT_ID_PERSON_ID})
*
- {@link Constant#FL_LOG_LIGHT_ID_NAME})
*
- {@link Constant#FL_LOG_LIGHT_ID_PAPERS_TYPE})
*
- {@link Constant#FL_LOG_LIGHT_ID_PAPERS_NUM})
*
- {@link Constant#FL_LOG_LIGHT_ID_VERIFY_TIME})
*
*
* @param bReverse set this value to true, if you want to reverse the sorting results
*/
public FlLogLightComparator(int iType, boolean bReverse)
{
this.iType = iType;
this.bReverse = bReverse;
}
@Override
public int compare(FlLogLightBean b1, FlLogLightBean b2)
{
int iReturn = 0;
switch(iType)
{
case FL_LOG_LIGHT_ID_ID:
if (b1.getId() == null && b2.getId() != null) {
iReturn = -1;
} else if (b1.getId() == null && b2.getId() == null) {
iReturn = 0;
} else if (b1.getId() != null && b2.getId() == null) {
iReturn = 1;
} else {
iReturn = b1.getId().compareTo(b2.getId());
}
break;
case FL_LOG_LIGHT_ID_PERSON_ID:
if (b1.getPersonId() == null && b2.getPersonId() != null) {
iReturn = -1;
} else if (b1.getPersonId() == null && b2.getPersonId() == null) {
iReturn = 0;
} else if (b1.getPersonId() != null && b2.getPersonId() == null) {
iReturn = 1;
} else {
iReturn = b1.getPersonId().compareTo(b2.getPersonId());
}
break;
case FL_LOG_LIGHT_ID_NAME:
if (b1.getName() == null && b2.getName() != null) {
iReturn = -1;
} else if (b1.getName() == null && b2.getName() == null) {
iReturn = 0;
} else if (b1.getName() != null && b2.getName() == null) {
iReturn = 1;
} else {
iReturn = b1.getName().compareTo(b2.getName());
}
break;
case FL_LOG_LIGHT_ID_PAPERS_TYPE:
if (b1.getPapersType() == null && b2.getPapersType() != null) {
iReturn = -1;
} else if (b1.getPapersType() == null && b2.getPapersType() == null) {
iReturn = 0;
} else if (b1.getPapersType() != null && b2.getPapersType() == null) {
iReturn = 1;
} else {
iReturn = b1.getPapersType().compareTo(b2.getPapersType());
}
break;
case FL_LOG_LIGHT_ID_PAPERS_NUM:
if (b1.getPapersNum() == null && b2.getPapersNum() != null) {
iReturn = -1;
} else if (b1.getPapersNum() == null && b2.getPapersNum() == null) {
iReturn = 0;
} else if (b1.getPapersNum() != null && b2.getPapersNum() == null) {
iReturn = 1;
} else {
iReturn = b1.getPapersNum().compareTo(b2.getPapersNum());
}
break;
case FL_LOG_LIGHT_ID_VERIFY_TIME:
if (b1.getVerifyTime() == null && b2.getVerifyTime() != null) {
iReturn = -1;
} else if (b1.getVerifyTime() == null && b2.getVerifyTime() == null) {
iReturn = 0;
} else if (b1.getVerifyTime() != null && b2.getVerifyTime() == null) {
iReturn = 1;
} else {
iReturn = b1.getVerifyTime().compareTo(b2.getVerifyTime());
}
break;
default:
throw new IllegalArgumentException("Type passed for the field is not supported");
}
return bReverse ? (-1 * iReturn) : iReturn;
}}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy