Sha256: 2a549bce8f069d0ad1f86578834fdb0214caa9b435ad698fae9d8d74457428e4
Contents?: true
Size: 904 Bytes
Versions: 119
Compression:
Stored size: 904 Bytes
Contents
/* * Javolution - Java(TM) Solution for Real-Time and Embedded Systems * Copyright (C) 2005 - Javolution (http://javolution.org/) * All rights reserved. * * Permission to use, copy, modify, and distribute this software is * freely granted, provided that this notice is preserved. */ package j2me.util; public interface Map { int size(); boolean isEmpty(); boolean containsKey(Object key); boolean containsValue(Object value); Object get(Object key); Object put(Object key, Object value); Object remove(Object key); void putAll(Map t); void clear(); Set keySet(); Collection values(); Set entrySet(); interface Entry { Object getKey(); Object getValue(); Object setValue(Object value); boolean equals(Object o); int hashCode(); } boolean equals(Object o); int hashCode(); }
Version data entries
119 entries across 119 versions & 1 rubygems