Your browser does not support JavaScript and this site utilizes JavaScript to build content and provide links to additional information. You should either enable JavaScript in your browser settings or use a browser that supports JavaScript in order to take full advantage of this site.
1 7 8 9 package javax.management.openmbean; 10 11 12 import java.io.Serializable ; 15 import java.util.Map ; 16 import java.util.Set ; 17 import java.util.Collection ; 18 19 22 23 33 public interface TabularData { 34 35 36 37 38 39 45 public TabularType getTabularType(); 46 47 48 66 public Object [] calculateIndex(CompositeData value) ; 67 68 69 70 71 72 73 80 public int size() ; 81 82 89 public boolean isEmpty() ; 90 91 100 public boolean containsKey(Object [] key) ; 101 102 111 public boolean containsValue(CompositeData value) ; 112 113 128 public CompositeData get(Object [] key) ; 129 130 131 132 133 134 135 136 160 public void put(CompositeData value) ; 161 162 177 public CompositeData remove(Object [] key) ; 178 179 180 181 182 183 184 185 203 public void putAll(CompositeData [] values) ; 204 205 208 public void clear(); 209 210 211 212 213 214 215 216 222 public Set keySet(); 223 224 231 public Collection values(); 232 233 234 235 236 237 238 239 256 public boolean equals(Object obj); 257 258 272 public int hashCode(); 273 274 282 public String toString(); 283 284 } 285
| Popular Tags
|