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

F79659-03

coherence/util/TreeSet.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_TREE_SET_HPP
00008 #define COH_TREE_SET_HPP
00009 
00010 #include "coherence/lang.ns"
00011 
00012 #include "coherence/util/Comparator.hpp"
00013 #include "coherence/util/MappedSet.hpp"
00014 #include "coherence/util/SortedSet.hpp"
00015 #include "coherence/util/TreeMap.hpp"
00016 
00017 COH_OPEN_NAMESPACE2(coherence,util)
00018 
00019 /**
00020 * A TreeSet implementation based on a TreeMap. The elements are ordered using
00021 * their natural ordering, or by a Comparator provided at set creation time,
00022 * depending on which constructor is used.
00023 *
00024 * @author hr  2011.09.07
00025 *
00026 * @see SortedSet
00027 * @see TreeMap
00028 *
00029 * @since Coherence 12.1.2
00030 */
00031 class COH_EXPORT TreeSet
00032     : public cloneable_spec<TreeSet,
00033           extends<MappedSet>,
00034           implements<SortedSet> >
00035     {
00036     friend class factory<TreeSet>;
00037 
00038     // ----- constructors ---------------------------------------------------
00039 
00040     protected:
00041         /**
00042         * Return a new TreeSet that will sort it's elements using their
00043         * natural ordering.
00044         */
00045         TreeSet();
00046 
00047         /**
00048         * Return a new TreeSet that will sort it's elements using the
00049         * supplied Comparator.
00050         *
00051         * @param vComparator  the Comparator used to sort elements
00052         */
00053         TreeSet(Comparator::View vComparator);
00054 
00055         /**
00056         * Return a TreeSet backed by the given SortedMap.
00057         *
00058         * @param hMap  the delegate SortedMap
00059         */
00060         TreeSet(SortedMap::Handle hMap);
00061 
00062         /**
00063         * Return a TreeSet backed by the given SortedMap.
00064         *
00065         * @param vMap  the delegate SortedMap
00066         */
00067         TreeSet(SortedMap::View vMap);
00068 
00069         /**
00070         * Copy constructor.
00071         */
00072         TreeSet(const TreeSet& that);
00073 
00074     // ----- SortedSet interface --------------------------------------------
00075 
00076     public:
00077         /**
00078         * {@inheritDoc}
00079         */
00080         virtual Comparator::View comparator() const;
00081 
00082         /**
00083         * {@inheritDoc}
00084         */
00085         virtual SortedSet::Handle subSet(Object::View vFromElement,
00086                         Object::View vToElement);
00087 
00088         /**
00089         * {@inheritDoc}
00090         */
00091         virtual SortedSet::View subSet(Object::View vFromElement,
00092                         Object::View vToElement) const;
00093 
00094         /**
00095         * {@inheritDoc}
00096         */
00097         virtual SortedSet::Handle headSet(Object::View vToElement);
00098 
00099         /**
00100         * {@inheritDoc}
00101         */
00102         virtual SortedSet::View headSet(Object::View vToElement) const;
00103 
00104         /**
00105         * {@inheritDoc}
00106         */
00107         virtual SortedSet::Handle tailSet(Object::View vFromElement);
00108 
00109         /**
00110         * {@inheritDoc}
00111         */
00112         virtual SortedSet::View tailSet(Object::View vFromElement) const;
00113 
00114         /**
00115         * {@inheritDoc}
00116         */
00117         virtual Object::View first() const;
00118 
00119         /**
00120         * {@inheritDoc}
00121         */
00122         virtual Object::View last() const;
00123 
00124     // ----- helpers --------------------------------------------------------
00125 
00126     protected:
00127         /**
00128         * Throws an exception iff the internal map is inaccessible.
00129         *
00130         * @throws IllegalStateException iff the internal map is inaccessible
00131         */
00132         virtual void ensureMap();
00133 
00134         /**
00135         * Return the delegate SortedMap.
00136         *
00137         * @return the delegate SortedMap
00138         */
00139         virtual SortedMap::Handle getSortedMap();
00140 
00141         /**
00142         * Return the delegate SortedMap.
00143         *
00144         * @return the delegate SortedMap
00145         */
00146         virtual SortedMap::View getSortedMap() const;
00147     };
00148 
00149 COH_CLOSE_NAMESPACE2
00150 
00151 #endif // COH_TREE_SET_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.