C# 클래스 Novell.Directory.Ldap.Utilclass.EnumeratedIterator

wrappers a class of type Iterator and makes it act as an Enumerator. This is used when the API requires enumerations be used but we may be using JDK1.2 collections, which return iterators instead of enumerators. Used by LdapSchema and LdapSchemaElement
상속: System.Collections.IEnumerator
파일 보기 프로젝트 열기: EventStore/csharp-ldap

공개 메소드들

메소드 설명
EnumeratedIterator ( System iterator ) : System
MoveNext ( ) : bool
Reset ( ) : void
hasMoreElements ( ) : bool

Enumeration method that maps to Iterator.hasNext()

nextElement ( ) : Object

Enumeration method that maps to Iterator.next()

메소드 상세

EnumeratedIterator() 공개 메소드

public EnumeratedIterator ( System iterator ) : System
iterator System
리턴 System

MoveNext() 공개 메소드

public MoveNext ( ) : bool
리턴 bool

Reset() 공개 메소드

public Reset ( ) : void
리턴 void

hasMoreElements() 공개 메소드

Enumeration method that maps to Iterator.hasNext()
public hasMoreElements ( ) : bool
리턴 bool

nextElement() 공개 메소드

Enumeration method that maps to Iterator.next()
public nextElement ( ) : Object
리턴 System.Object