C++ Client API Reference for Oracle Coherence
14c (14.1.2.0.0)

F79659-03

coherence/util/comparator/InverseComparator.hpp

00001 /*
00002  * Copyright (c) 2000, 2020, Oracle and/or its affiliates.
00003  *
00004  * Licensed under the Universal Permissive License v 1.0 as shown at
00005  * http://oss.oracle.com/licenses/upl.
00006  */
00007 #ifndef COH_INVERSE_COMPARATOR_HPP
00008 #define COH_INVERSE_COMPARATOR_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/io/pof/PofReader.hpp"
00013 #include "coherence/io/pof/PofWriter.hpp"
00014 #include "coherence/io/pof/PortableObject.hpp"
00015 #include "coherence/util/Comparator.hpp"
00016 #include "coherence/util/comparator/SafeComparator.hpp"
00017 #include "coherence/util/QueryMap.hpp"
00018 #include "coherence/util/comparator/QueryMapComparator.hpp"
00019 
00020 COH_OPEN_NAMESPACE3(coherence,util,comparator)
00021 
00022 using coherence::io::pof::PofReader;
00023 using coherence::io::pof::PofWriter;
00024 using coherence::io::pof::PortableObject;
00025 using coherence::util::comparator::SafeComparator;
00026 
00027 /**
00028 * Comparator that reverses the result of another comparator.
00029 *
00030 * @author gm  2008.08.05
00031 */
00032 class COH_EXPORT InverseComparator
00033     : public class_spec<InverseComparator,
00034         extends<SafeComparator>,
00035         implements<QueryMapComparator> >
00036     {
00037     friend class factory<InverseComparator>;
00038 
00039     // ----- constructors/destructor ----------------------------------------
00040 
00041     protected:
00042         /**
00043         * Default constructor (necessary for the PortableObject interface).
00044         */
00045         InverseComparator();
00046 
00047         /**
00048         * Construct a InverseComparator.
00049         *
00050         * @param vComparator  the comparator whose results are inverted by
00051         *                     this Comparator
00052         */
00053         InverseComparator(Comparator::View vComparator);
00054 
00055     private:
00056         /**
00057         * Blocked copy constructor.
00058         */
00059         InverseComparator(const InverseComparator&);
00060 
00061 
00062     // ----- Comparator interface -------------------------------------------
00063 
00064     public:
00065         /**
00066         * Use the wrapped Comparator to compare the two arguments for order and
00067         * negate the result.
00068         *
00069         * @param vO1  the first object to be compared
00070         * @param vO2  the second object to be compared
00071         *
00072         * @return a positive integer, zero, or a negative integer as the first
00073         *         argument is less than, equal to, or greater than the second
00074         *
00075         * @throws ClassCastException if the arguments' types prevent them from
00076         *         being compared by this Comparator.
00077         */
00078         virtual int32_t compare(Object::View vO1, Object::View vO2) const;
00079 
00080     // ----- QueryMap interface ---------------------------------------------
00081 
00082     public:
00083         /**
00084         * Compare two entries using the underlying comparator and negate the
00085         * result.
00086         */
00087         virtual int32_t compareEntries(QueryMap::Entry::View vEntry1,
00088                     QueryMap::Entry::View vEntry2) const;
00089 
00090 
00091     // ----- Object interface -----------------------------------------------
00092 
00093     public:
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual bool equals(Object::View v) const;
00098 
00099 
00100     // ----- constants ------------------------------------------------------
00101 
00102     public:
00103         /**
00104         * An instance of the InverseComparator.
00105         */
00106         static InverseComparator::Handle getInstance();
00107     };
00108 
00109 COH_CLOSE_NAMESPACE3
00110 
00111 #endif // COH_INVERSE_COMPARATOR_HPP
Copyright © 2000, 2025, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.