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

1234567

/forgerock/opendj-b2.6/src/server/org/opends/server/types/
H A DAttributeValueIterable.java88 * Retrieves an iterator that can be used to cursor through the set
91 * @return An iterator that can be used to cursor through the set
94 public Iterator<AttributeValue> iterator() { method in class:AttributeValueIterable
100 * Private iterator implementation.
107 // The current attribute iterator.
110 // The current value iterator.
114 * Create a new attribute value iterator over the attribute set.
121 this.attributeIterator = attributes.iterator();
194 valueIterator = attribute.iterator();
H A DSubtreeSpecificationSet.java129 * Retrieves an iterator that may be used to step through the values
132 * @return An iterator that may be used to step through the values
136 public Iterator<SubtreeSpecification> iterator() method in class:SubtreeSpecificationSet
138 return pimpl.iterator();
H A DCollectiveVirtualAttribute.java99 public Iterator<AttributeValue> iterator() { method in class:CollectiveVirtualAttribute
100 return attribute.iterator();
/forgerock/opendj2/src/server/org/opends/server/types/
H A DAttributeValueIterable.java87 * Retrieves an iterator that can be used to cursor through the set
90 * @return An iterator that can be used to cursor through the set
93 public Iterator<AttributeValue> iterator() { method in class:AttributeValueIterable
99 * Private iterator implementation.
106 // The current attribute iterator.
109 // The current value iterator.
113 * Create a new attribute value iterator over the attribute set.
120 this.attributeIterator = attributes.iterator();
193 valueIterator = attribute.iterator();
H A DSubtreeSpecificationSet.java128 * Retrieves an iterator that may be used to step through the values
131 * @return An iterator that may be used to step through the values
135 public Iterator<SubtreeSpecification> iterator() method in class:SubtreeSpecificationSet
137 return pimpl.iterator();
H A DCollectiveVirtualAttribute.java98 public Iterator<AttributeValue> iterator() { method in class:CollectiveVirtualAttribute
99 return attribute.iterator();
/forgerock/opendj2.6.2/src/server/org/opends/server/types/
H A DAttributeValueIterable.java88 * Retrieves an iterator that can be used to cursor through the set
91 * @return An iterator that can be used to cursor through the set
94 public Iterator<AttributeValue> iterator() { method in class:AttributeValueIterable
100 * Private iterator implementation.
107 // The current attribute iterator.
110 // The current value iterator.
114 * Create a new attribute value iterator over the attribute set.
121 this.attributeIterator = attributes.iterator();
194 valueIterator = attribute.iterator();
H A DSubtreeSpecificationSet.java129 * Retrieves an iterator that may be used to step through the values
132 * @return An iterator that may be used to step through the values
136 public Iterator<SubtreeSpecification> iterator() method in class:SubtreeSpecificationSet
138 return pimpl.iterator();
H A DCollectiveVirtualAttribute.java99 public Iterator<AttributeValue> iterator() { method in class:CollectiveVirtualAttribute
100 return attribute.iterator();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/types/
H A DAttributeValueIterable.java88 * Retrieves an iterator that can be used to cursor through the set
91 * @return An iterator that can be used to cursor through the set
94 public Iterator<AttributeValue> iterator() { method in class:AttributeValueIterable
100 * Private iterator implementation.
107 // The current attribute iterator.
110 // The current value iterator.
114 * Create a new attribute value iterator over the attribute set.
121 this.attributeIterator = attributes.iterator();
194 valueIterator = attribute.iterator();
H A DSubtreeSpecificationSet.java129 * Retrieves an iterator that may be used to step through the values
132 * @return An iterator that may be used to step through the values
136 public Iterator<SubtreeSpecification> iterator() method in class:SubtreeSpecificationSet
138 return pimpl.iterator();
H A DCollectiveVirtualAttribute.java99 public Iterator<AttributeValue> iterator() { method in class:CollectiveVirtualAttribute
100 return attribute.iterator();
/forgerock/opendj2-hg/src/server/org/opends/server/types/
H A DAttributeValueIterable.java87 * Retrieves an iterator that can be used to cursor through the set
90 * @return An iterator that can be used to cursor through the set
93 public Iterator<AttributeValue> iterator() { method in class:AttributeValueIterable
99 * Private iterator implementation.
106 // The current attribute iterator.
109 // The current value iterator.
113 * Create a new attribute value iterator over the attribute set.
120 this.attributeIterator = attributes.iterator();
193 valueIterator = attribute.iterator();
H A DSubtreeSpecificationSet.java128 * Retrieves an iterator that may be used to step through the values
131 * @return An iterator that may be used to step through the values
135 public Iterator<SubtreeSpecification> iterator() method in class:SubtreeSpecificationSet
137 return pimpl.iterator();
/forgerock/openam-v13/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DLicenseSet.java77 * @return an iterator over the required licenses, in order.
79 public Iterator<License> iterator() { method in class:LicenseSet
80 return licenses.iterator();
/forgerock/openidm-v4/openidm-core/src/main/java/org/forgerock/openidm/sync/impl/
H A DResultIterable.java53 Iterator<ResultEntry> entryIter = this.iterator();
63 * Get an iterator over the ids and optional values
64 * @see java.lang.Iterable#iterator()
66 public Iterator<ResultEntry> iterator() { method in class:ResultIterable
72 idsIter = allIds.iterator();
74 valuesIter = values.iterator();
/forgerock/openam/openam-tools/openam-license-core/src/main/java/org/forgerock/openam/license/
H A DLicenseSet.java77 * @return an iterator over the required licenses, in order.
79 public Iterator<License> iterator() { method in class:LicenseSet
80 return licenses.iterator();
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveHashSet.java40 * original case is preserved. The iterator returns the case preserved Strings
41 * that can be casted to a String, no different from an iterator from the
49 public CaseInsensitiveKeyIterator(Iterator<T> iterator) { argument
50 mIterator = iterator;
119 * @return an iterator of objects in the set, no different than iterator
122 public Iterator<T> iterator() { method in class:CaseInsensitiveHashSet
123 // The CaseInsensitiveKeyIterator allows the iterator to return
125 return new CaseInsensitiveKeyIterator(super.iterator());
/forgerock/openam-v13/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DOrderedSet.java40 * data is stored in the order input. It overwrites add, iterator and size
61 * Returns an iterator over the elements in this set.
63 * @return an iterator over the elements in this set.
65 public Iterator iterator() { method in class:OrderedSet
66 return list.iterator();
85 Iterator it = s.iterator();
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/common/
H A DCaseInsensitiveHashSet.java40 * original case is preserved. The iterator returns the case preserved Strings
41 * that can be casted to a String, no different from an iterator from the
49 public CaseInsensitiveKeyIterator(Iterator<T> iterator) { argument
50 mIterator = iterator;
119 * @return an iterator of objects in the set, no different than iterator
122 public Iterator<T> iterator() { method in class:CaseInsensitiveHashSet
123 // The CaseInsensitiveKeyIterator allows the iterator to return
125 return new CaseInsensitiveKeyIterator(super.iterator());
/forgerock/openam/openam-shared/src/main/java/com/sun/identity/shared/datastruct/
H A DOrderedSet.java40 * data is stored in the order input. It overwrites add, iterator and size
61 * Returns an iterator over the elements in this set.
63 * @return an iterator over the elements in this set.
65 public Iterator iterator() { method in class:OrderedSet
66 return list.iterator();
85 Iterator it = s.iterator();
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/session/service/access/persistence/
H A DInternalSessionStoreChain.java64 private final Iterator<InternalSessionStoreStep> iterator; field in class:InternalSessionStoreChain.ChainIterator
65 ChainIterator() { this.iterator = steps.iterator(); }
69 if (iterator.hasNext()) {
70 return iterator.next().getBySessionID(sessionID, this);
78 if (iterator.hasNext()) {
79 return iterator.next().getByHandle(sessionHandle, this);
87 if (iterator.hasNext()) {
88 return iterator.next().getByRestrictedID(sessionID, this);
96 if (iterator
[all...]
/forgerock/opendj-b2.6/src/server/org/opends/server/replication/common/
H A DMultiDomainServerState.java177 public Iterator<String> iterator() method in class:MultiDomainServerState
179 return list.keySet().iterator();
/forgerock/opendj2.6.2/src/server/org/opends/server/replication/common/
H A DMultiDomainServerState.java177 public Iterator<String> iterator() method in class:MultiDomainServerState
179 return list.keySet().iterator();
/forgerock/opendj2-jel-hg/src/server/org/opends/server/replication/common/
H A DMultiDomainServerState.java177 public Iterator<String> iterator() method in class:MultiDomainServerState
179 return list.keySet().iterator();

Completed in 160 milliseconds

1234567