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

org.apache.commons.collections.comparators.BooleanComparator Maven / Gradle / Ivy

There is a newer version: 20040616
Show newest version
/* ====================================================================
 * The Apache Software License, Version 1.1
 *
 * Copyright (c) 2003-2004 The Apache Software Foundation.  All rights
 * reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 *
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in
 *    the documentation and/or other materials provided with the
 *    distribution.
 *
 * 3. The end-user documentation included with the redistribution, if
 *    any, must include the following acknowledgement:
 *       "This product includes software developed by the
 *        Apache Software Foundation (http://www.apache.org/)."
 *    Alternately, this acknowledgement may appear in the software itself,
 *    if and wherever such third-party acknowledgements normally appear.
 *
 * 4. The names "The Jakarta Project", "Commons", and "Apache Software
 *    Foundation" must not be used to endorse or promote products derived
 *    from this software without prior written permission. For written
 *    permission, please contact [email protected].
 *
 * 5. Products derived from this software may not be called "Apache"
 *    nor may "Apache" appear in their names without prior written
 *    permission of the Apache Software Foundation.
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
 * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 * ====================================================================
 *
 * This software consists of voluntary contributions made by many
 * individuals on behalf of the Apache Software Foundation.  For more
 * information on the Apache Software Foundation, please see
 * .
 */
package org.apache.commons.collections.comparators;

import java.io.Serializable;
import java.util.Comparator;

/**
 * A {@link Comparator} for {@link Boolean} objects.
 * 
 * @see #getTrueFirstComparator
 * @see #getFalseFirstComparator
 * @see #getBooleanComparator
 * 
 * @since Commons Collections 3.0
 * @version $Revision: 1.10 $ $Date: 2004/01/14 21:43:18 $
 * 
 * @author Rodney Waldhoff
 */
public final class BooleanComparator implements Comparator, Serializable {

    /**
     * Creates a BooleanComparator
     * that sorts false values before 
     * true values.
     * 
     * Equivalent to {@link #BooleanComparator(boolean) BooleanComparator(false)}.
     */
    public BooleanComparator() {
        this(false);
    }

    /**
     * Creates a BooleanComparator
     * that sorts trueFirst values before 
     * !trueFirst values.
     * 
     * @param trueFirst when true, sort 
     *        true {@link Boolean}s before
     *        false {@link Boolean}s.
     */
    public BooleanComparator(boolean trueFirst) {
        this.trueFirst = trueFirst;
    }

    /**
     * Compares two arbitrary Objects. When both arguments
     * are {@link Boolean}, this method is equivalent to 
     * {@link #compare(Boolean,Boolean) compare((Boolean)o1,(Boolean)o2)}.
     * When either argument is not a {@link Boolean}, this methods throws
     * a {@link ClassCastException}.
     * 
     * @throws ClassCastException when either argument is not 
     *         a {@link Boolean}
     */
    public int compare(Object o1, Object o2) {
        return compare((Boolean)o1,(Boolean)o2);
    }
    
    /**
     * Compares two non-null {@link Boolean}s
     * according to the value of {@link #sortsTrueFirst}.
     * 
     * @throws NullPointerException when either argument null
     */
    public int compare(Boolean b1, Boolean b2) {
        boolean v1 = b1.booleanValue();
        boolean v2 = b2.booleanValue();

        return (v1 ^ v2) ? ( (v1 ^ trueFirst) ? 1 : -1 ) : 0;
    }

    /**
     * Implement a hash code for this comparator that is consistent with
     * {@link #equals equals}.
     *
     * @return a hash code for this comparator.
     */
    public int hashCode() {
        int hash = "BooleanComparator".hashCode();
        return trueFirst ? -1 * hash : hash;
    }

    /**
     * Returns true iff that Object is 
     * is a {@link Comparator} whose ordering is known to be 
     * equivalent to mine.
     * 

* This implementation returns true * iff that is a {@link BooleanComparator} * whose {@link #sortsTrueFirst} value is equal to mine. */ public boolean equals(Object that) { return (this == that) || ((that instanceof BooleanComparator) && (this.trueFirst == ((BooleanComparator)that).trueFirst)); } /** * Returns true iff * I sort true values before * false values. In other words, * returns true iff * {@link #compare(Boolean,Boolean) compare(Boolean.FALSE,Boolean.TRUE)} * returns a positive value. */ public boolean sortsTrueFirst() { return trueFirst; } /** * Returns a BooleanComparator instance that sorts * true values before false values. *

* Clients are encouraged to use the value returned from * this method instead of constructing a new instance * to reduce allocation and garbage collection overhead when * multiple BooleanComparators may be used in the same * virtual machine. */ public static BooleanComparator getTrueFirstComparator() { return TRUE_FIRST; } /** * Returns a BooleanComparator instance that sorts * false values before true values. *

* Clients are encouraged to use the value returned from * this method instead of constructing a new instance * to reduce allocation and garbage collection overhead when * multiple BooleanComparators may be used in the same * virtual machine. */ public static BooleanComparator getFalseFirstComparator() { return FALSE_FIRST; } /** * Returns a BooleanComparator instance that sorts * trueFirst values before * !trueFirst values. *

* Clients are encouraged to use the value returned from * this method instead of constructing a new instance * to reduce allocation and garbage collection overhead when * multiple BooleanComparators may be used in the same * virtual machine. * * @param trueFirst when true, sort * true {@link Boolean}s before * false {@link Boolean}s. * @return a cached BooleanComparator instance */ public static BooleanComparator getBooleanComparator(boolean trueFirst) { return trueFirst ? TRUE_FIRST : FALSE_FIRST; } /** true iff true values sort before false values. */ private boolean trueFirst = false; /** My static "true first" reference. */ private static final BooleanComparator TRUE_FIRST = new BooleanComparator(true); /** My static "false first" reference. */ private static final BooleanComparator FALSE_FIRST = new BooleanComparator(false); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy