Interface IDfEnumeration


public interface IDfEnumeration
Provides a wrapper for a java.util.Enumeration so that it may be used across COM.
  • Method Summary

    Modifier and Type
    Method
    Description
    boolean
    Returns true if there are more objects in the enumeration.
    Advances the enumeration cursor and returns the next object in the enumeration.
  • Method Details

    • nextElement

      Object nextElement()
      Advances the enumeration cursor and returns the next object in the enumeration. On the COM side, this will return an IDispatch pointer.
    • hasMoreElements

      boolean hasMoreElements()
      Returns true if there are more objects in the enumeration.