Searched defs:iterator (Results 1 - 17 of 17) sorted by relevance

/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/util/
H A DIterableAdapter.java65 public Iterator<T> iterator() { method in class:IterableAdapter
H A DEnumerator.java88 this(collection.iterator());
97 * @param clone true to clone iterator
101 this(collection.iterator(), clone);
110 * @param iterator Iterator to be wrapped
112 public Enumerator(Iterator<T> iterator) { argument
115 this.iterator = iterator;
124 * @param iterator Iterator to be wrapped
125 * @param clone true to clone iterator
127 public Enumerator(Iterator<T> iterator, boolea argument
175 private Iterator<T> iterator = null; field in class:Enumerator
[all...]
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DNamingContextBindingsEnumeration.java85 iterator = entries;
96 protected Iterator<NamingEntry> iterator; field in class:NamingContextBindingsEnumeration
122 return iterator.hasNext();
135 return iterator.hasNext();
148 NamingEntry entry = iterator.next();
H A DNamingContextEnumeration.java82 iterator = entries;
92 protected Iterator<NamingEntry> iterator; field in class:NamingContextEnumeration
112 return iterator.hasNext();
125 return iterator.hasNext();
130 NamingEntry entry = iterator.next();
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/
H A DClassPathBuilder.java57 public Iterator<File> iterator() { method in class:ClassPathBuilder
58 return elements.iterator();
/glassfish-3.1.2/admin/monitor/src/main/java/org/glassfish/admin/monitor/
H A DFutureStatsProviders.java64 static Iterator<StatsProviderInfo> iterator() { method in class:FutureStatsProviders
65 return data.iterator();
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/tests/web/elements/
H A DWebReferencesInWEBINF.java63 Iterator iterator; field in class:WebReferencesInWEBINF
88 iterator = references.iterator();
92 if (iterator.hasNext()) {
93 while (iterator.hasNext()) {
94 ejbReference = (EjbReferenceDescriptor) iterator.next();
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/
H A DTokenValueSet.java85 public Iterator<TokenValue> iterator() { method in class:TokenValueSet
86 return ( this.values.iterator() );
107 Iterator<TokenValue> iter = this.iterator();
H A DQuotedStringTokenizer.java51 private final CharIterator iterator; field in class:QuotedStringTokenizer
70 iterator = new CharIterator(ca);
91 while ((c = iterator.next()) != CharIterator.EOF)
99 char next = iterator.peekNext();
/glassfish-3.1.2/persistence/cmp/utility/src/main/java/com/sun/jdo/spi/persistence/utility/
H A DWeakHashSet.java59 * Returns an iterator over the elements in this set. The elements
64 public Iterator iterator () method in class:WeakHashSet
69 // get an iterator of the superclass WeakHashSet
70 final Iterator i = super.iterator();
H A DWeakValueHashMap.java317 public Iterator iterator() { method in class:WeakValueHashMap.EntrySet
322 Iterator hashIterator = hashEntrySet.iterator();
354 return !(iterator().hasNext());
359 for (Iterator i = iterator(); i.hasNext(); i.next()) j++;
389 for (Iterator i = hashEntrySet.iterator(); i.hasNext(); ) {
434 public Iterator iterator() {
436 private Iterator i = entrySet().iterator();
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/
H A DExtentCollection.java142 public Iterator iterator() { method in class:ExtentCollection
144 return ((Collection)pm.retrieve(rd)).iterator();
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/cmp/
H A DEJBHashSet.java258 * each element returned by the iterator in turn to see if it's
314 * Returns an iterator over the elements in this set. The elements
320 public Iterator iterator() { method in class:EJBHashSet
331 _iterator = pcSet.iterator();
395 for (Iterator it = c.iterator(); it.hasNext();)
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/sco/
H A DHashSet.java269 Iterator i = c.iterator();
305 for (Iterator iter = c.iterator(); iter.hasNext();)
450 for (Iterator iter = c.iterator(); iter.hasNext();)
520 for (Iterator iter = super.iterator(); iter.hasNext();)
585 for (Iterator iter = super.iterator(); iter.hasNext();)
632 * Returns an iterator over the elements in this set. The elements
638 public Iterator iterator() { method in class:HashSet
639 return new SCOHashIterator(super.iterator(), this);
802 Iterator iter = c.iterator();
829 Iterator iter = c.iterator();
[all...]
/glassfish-3.1.2/deployment/common/src/main/java/com/sun/enterprise/deployment/deploy/shared/
H A DInputJarArchive.java689 * the original enumeration to return the next value from the iterator. This
692 * the iterator is being used to return values -- the subsequent invocations
720 public Iterator<T> iterator() { method in class:InputJarArchive.CollectionWrappedEnumeration
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployapi/
H A DSunDeploymentManager.java685 for (Iterator it = coll.iterator(); it.hasNext();) {
687 *The iterator returns one work instance for each module present in the collection.
756 for (Iterator it = coll.iterator(); it.hasNext();) {
758 *The iterator returns one work instance for each module present in the collection.
1185 for (Iterator it = coll.iterator(); it.hasNext();) {
1187 *The iterator returns one work instance for each module present in the collection.
1350 *<le>the iterator() method, which the client uses to step through the DeploymentFacilityModuleWork
1404 *The iterator provides one element for each distinct module that appeared in the original
1409 public Iterator iterator() { method in class:SunDeploymentManager.TargetModuleIDCollection
1410 return moduleIDToInfoMap.values().iterator();
[all...]
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/
H A Djdbc40.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ...

Completed in 568 milliseconds