org.maachang.dbm.engine
クラス MDbmEnumeration

java.lang.Object
  上位を拡張 org.maachang.dbm.engine.MDbmEnumeration
すべての実装されたインタフェース:
java.util.Enumeration<byte[]>

public class MDbmEnumeration
extends java.lang.Object
implements java.util.Enumeration<byte[]>

次情報管理用.

導入されたバージョン:
MaachangDBM 1.00
バージョン:
2008/01/16
作成者:
masahito suzuki

メソッドの概要
 boolean hasMoreElements()
          Tests if this enumeration contains more elements.
 byte[] nextElement()
          Returns the next element of this enumeration if this enumeration object has at least one more element to provide.
 
クラス java.lang.Object から継承されたメソッド
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

メソッドの詳細

hasMoreElements

public boolean hasMoreElements()
Tests if this enumeration contains more elements.

定義:
インタフェース java.util.Enumeration<byte[]> 内の hasMoreElements
戻り値:
true if and only if this enumeration object contains at least one more element to provide; false otherwise.

nextElement

public byte[] nextElement()
Returns the next element of this enumeration if this enumeration object has at least one more element to provide.

定義:
インタフェース java.util.Enumeration<byte[]> 内の nextElement
戻り値:
the next element of this enumeration.
例外:
java.util.NoSuchElementException - if no more elements exist.