java.util
Interface Enumeration


public interface Enumeration

객체의 순차적 구조체인 Enumeration을 위한 인터페이스 클래스.


Method Summary
 boolean hasMoreElements()
          Enumeration안에 남아있는 객체가 있는지 여부를 구한다.
 Object nextElement()
          Enumeration에서 다음 객체를 구한다.
 

Method Detail

hasMoreElements

public boolean hasMoreElements()
Enumeration안에 남아있는 객체가 있는지 여부를 구한다.
Returns:
객체가 남아있다면 true 아니면 false.

nextElement

public Object nextElement()
Enumeration에서 다음 객체를 구한다.
Returns:
다음 순서의 객체.
Throws:
NoSuchElementException - 더 이상 객체가 없을 때 발생.


AromaSoft Corp. Proprietary and Confidential

(C)opyright 2003 AromaSoft Corp. All right reserved.
Contact : contact@aromasoft.com