⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 olderfirstcomparator.java

📁 提供ESB 应用mule源代码 提供ESB 应用mule源代码
💻 JAVA
字号:
/* * $Id: OlderFirstComparator.java 10489 2008-01-23 17:53:38Z dfeist $ * -------------------------------------------------------------------------------------- * Copyright (c) MuleSource, Inc.  All rights reserved.  http://www.mulesource.com * * The software in this package is published under the terms of the CPAL v1.0 * license, a copy of which has been included with this distribution in the * LICENSE.txt file. */package org.mule.transport.file.comparator;import org.mule.util.ClassUtils;import org.mule.util.FileUtils;import java.io.File;import java.text.MessageFormat;import java.util.Comparator;/** * <p><code>OlderComparatorComparator</code> is a {@link Comparator} of File * which is capable of comparing files for equality based on their modification dates.</p> */public class OlderFirstComparator implements Comparator{    public int compare(Object o1, Object o2)    {        if (o1 instanceof File && o2 instanceof File)        {            File f = (File) o1;            File f1 = (File) o2;            boolean fileNewer = FileUtils.isFileNewer(f, f1);            boolean fileOlder = FileUtils.isFileOlder(f, f1);            if (!fileNewer && !fileOlder)            {                return 0;            }            else if (fileNewer)            {                return 1;            }            else            {                return -1;            }        }        throw new IllegalArgumentException(MessageFormat.format(                "Expected java.io.File instance, but was {0} and {1}",                new Object[] {ClassUtils.getShortClassName(o1, "<null>"),                              ClassUtils.getShortClassName(o2, "<null")}));    }}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -