Sha256: 6960f3185121c2270e36c687881c45a33459b3bd90a1aa5fb673141b2a34732b
Contents?: true
Size: 575 Bytes
Versions: 119
Compression:
Stored size: 575 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 ListIterator extends Iterator { boolean hasNext(); Object next(); boolean hasPrevious(); Object previous(); int nextIndex(); int previousIndex(); void remove(); void set(Object o); void add(Object o); }
Version data entries
119 entries across 119 versions & 1 rubygems