Sha256: d0438b79762169429f530b391766cfdde7f2a8eba527c9275a02fd736d216f86
Contents?: true
Size: 795 Bytes
Versions: 119
Compression:
Stored size: 795 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 Set extends Collection { int size(); boolean isEmpty(); boolean contains(Object o); Iterator iterator(); Object[] toArray(); Object[] toArray(Object[] a); boolean add(Object o); boolean remove(Object o); boolean containsAll(Collection c); boolean addAll(Collection c); boolean retainAll(Collection c); boolean removeAll(Collection c); void clear(); boolean equals(Object o); int hashCode(); }
Version data entries
119 entries across 119 versions & 1 rubygems