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_SORTED_MAP_HPP 00008 #define COH_SORTED_MAP_HPP 00009 00010 #include "coherence/lang.ns" 00011 00012 #include "coherence/util/Comparator.hpp" 00013 #include "coherence/util/Map.hpp" 00014 00015 COH_OPEN_NAMESPACE2(coherence,util) 00016 00017 00018 /** 00019 * An interface for a map which guarantees its key's iteration order. 00020 * 00021 * @see Map 00022 * @see TreeMap 00023 * 00024 * @author tb 2009.02.13 00025 */ 00026 class COH_EXPORT SortedMap 00027 : public interface_spec<SortedMap, 00028 implements<Map> > 00029 { 00030 00031 // ----- Sorted Map interface ------------------------------------------- 00032 00033 public: 00034 /** 00035 * Returns the comparator used in sorting this map, or NULL if it is 00036 * the keys' natural ordering. 00037 * 00038 * @return the sorting comparator 00039 */ 00040 virtual Comparator::View comparator() const = 0; 00041 00042 /** 00043 * Returns the first (lowest sorted) key in the map. 00044 * 00045 * @return the first key 00046 * @throws NoSuchElementException if this map is empty. 00047 */ 00048 virtual Object::View firstKey() const = 0; 00049 00050 /** 00051 * Returns the last (highest sorted) key in the map. 00052 * 00053 * @return the last key 00054 * 00055 * @throws NoSuchElementException if this map is empty. 00056 */ 00057 virtual Object::View lastKey() const = 0; 00058 00059 /** 00060 * Returns a handle of the portion of the map strictly less than vToKey. 00061 * The handle is backed by this map, so changes in one show up in the 00062 * other. The sub-map supports all optional operations of the original. 00063 * 00064 * @param vToKey the exclusive upper range of the sub-map 00065 * 00066 * @return the sub-map 00067 * 00068 * @throws ClassCastException if vToKey is not comparable to the map 00069 * contents 00070 * @throws IllegalArgumentException if this is a sub-map, and vToKey is 00071 * out of range 00072 * @throws NullPointerException if vToKey is NULL but the map does not 00073 * allow NULL keys 00074 */ 00075 virtual SortedMap::Handle headMap(Object::View vToKey) = 0; 00076 00077 /** 00078 * Returns a view of the portion of the map strictly less than vToKey. 00079 * 00080 * @param vToKey the exclusive upper range of the sub-map 00081 * 00082 * @return the sub-map 00083 * 00084 * @throws ClassCastException if vToKey is not comparable to the map 00085 * contents 00086 * @throws IllegalArgumentException if this is a sub-map, and vToKey is 00087 * out of range 00088 * @throws NullPointerException if vToKey is NULL but the map does not 00089 * allow NULL keys 00090 */ 00091 virtual SortedMap::View headMap(Object::View vToKey) const = 0; 00092 00093 /** 00094 * Returns a handle of the portion of the map greater than or equal to 00095 * vFromKey, and strictly less than vToKey. The handle is backed by this 00096 * map, so changes in one show up in the other. The sub-map supports all 00097 * optional operations of the original. 00098 * 00099 * @param vFromKey the inclusive lower range of the sub-map 00100 * @param vToKey the exclusive upper range of the sub-map 00101 * 00102 * @return the sub-map 00103 * 00104 * @throws ClassCastException if vFromKey or vToKey is not comparable to 00105 * the map contents 00106 * @throws IllegalArgumentException if this is a sub-map, and vFromKey or 00107 * vToKey is out of range 00108 * @throws NullPointerException if vFromKey or vToKey is NULL but the map 00109 * does not allow NULL keys 00110 */ 00111 virtual SortedMap::Handle subMap(Object::View vFromKey, 00112 Object::View vToKey) = 0; 00113 00114 /** 00115 * Returns a view of the portion of the map greater than or equal to 00116 * vFromKey, and strictly less than vToKey. 00117 * 00118 * @param vFromKey the inclusive lower range of the sub-map 00119 * @param vToKey the exclusive upper range of the sub-map 00120 * 00121 * @return the sub-map 00122 * 00123 * @throws ClassCastException if vFromKey or vToKey is not comparable to 00124 * the map contents 00125 * @throws IllegalArgumentException if this is a sub-map, and vFromKey or 00126 * vToKey is out of range 00127 * @throws NullPointerException if vFromKey or vToKey is NULL but the map 00128 * does not allow NULL keys 00129 */ 00130 virtual SortedMap::View subMap(Object::View vFromKey, 00131 Object::View vToKey) const = 0; 00132 00133 /** 00134 * Returns a handle of the portion of the map greater than or equal to 00135 * vFromKey. The handle is backed by this map, so changes in one show up 00136 * in the other. The sub-map supports all optional operations of the 00137 * original. 00138 * 00139 * @param vFromKey the inclusive lower range of the sub-map 00140 * 00141 * @return the sub-map 00142 * 00143 * @throws ClassCastException if vFromKey is not comparable to the map 00144 * contents 00145 * @throws IllegalArgumentException if this is a sub-map, and vFromKey is 00146 * out of range 00147 * @throws NullPointerException if vFromKey is NULL but the map does not 00148 * allow NULL keys 00149 */ 00150 virtual SortedMap::Handle tailMap(Object::View vFromKey) = 0; 00151 00152 /** 00153 * Returns a view of the portion of the map greater than or equal to 00154 * vFromKey. 00155 * 00156 * @param vFromKey the inclusive lower range of the sub-map 00157 * 00158 * @return the sub-map 00159 * 00160 * @throws ClassCastException if vFromKey is not comparable to the map 00161 * contents 00162 * @throws IllegalArgumentException if this is a sub-map, and vFromKey is 00163 * out of range 00164 * @throws NullPointerException if vFromKey is NULL but the map does not 00165 * allow NULL keys 00166 */ 00167 virtual SortedMap::View tailMap(Object::View vFromKey) const = 0; 00168 }; 00169 00170 COH_CLOSE_NAMESPACE2 00171 00172 #endif // COH_SORTED_MAP_HPP