MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / keys

Method keys

vm/JavaAPI/src/java/util/Hashtable.java:539–550  ·  view source on GitHub ↗

Returns an enumeration on the keys of this Hashtable instance. The results of the enumeration may be affected if the contents of this Hashtable are modified. @return an enumeration of the keys of this Hashtable. @see #elements @see #size @see Enumeration

()

Source from the content-addressed store, hash-verified

537 * @see Enumeration
538 */
539 @Override
540 @SuppressWarnings("unchecked")
541 public synchronized java.util.Enumeration<K> keys() {
542 if (elementCount == 0) {
543 return (java.util.Enumeration<K>) EMPTY_ENUMERATION;
544 }
545 return new HashEnumIterator<K>(new MapEntry.Type<K, K, V>() {
546 public K get(MapEntry<K, V> entry) {
547 return entry.key;
548 }
549 }, true);
550 }
551
552 /**
553 * Returns a set of the keys contained in this {@code Hashtable}. The set

Callers 14

getContactPhoneNumberMethod · 0.95
getContactEmailMethod · 0.95
toStringMethod · 0.95
fromXmlMethod · 0.95
propertyNamesMethod · 0.95
toXMLMethod · 0.95
writeXMLMethod · 0.95
toStringMethod · 0.95
submitMethod · 0.95
copyAttributesToMethod · 0.95
listL10NLocalesMethod · 0.95
getThemeMethod · 0.95

Calls

no outgoing calls