Sha256: 36efd7ae792ff139d2066ac643efeff9ec9d4d340e9a3e1869aa23d284efb310
Contents?: true
Size: 501 Bytes
Versions: 119
Compression:
Stored size: 501 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; import j2me.util.Collection; public interface Queue extends Collection { boolean offer(Object o); Object poll(); Object remove(); Object peek(); Object element(); }
Version data entries
119 entries across 119 versions & 1 rubygems