Sha256: 772df5fcfab21e1f8c94df997d4d73264c5e6218175a4f9e5745b0a9184e97f3
Contents?: true
Size: 405 Bytes
Versions: 119
Compression:
Stored size: 405 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 Iterator { boolean hasNext(); Object next(); void remove(); }
Version data entries
119 entries across 119 versions & 1 rubygems